lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: placement of Dynamics


From: Simon Albrecht
Subject: Re: placement of Dynamics
Date: Wed, 09 Apr 2014 20:04:06 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.3.0


Am 09.04.2014 16:17, schrieb MING TSANG:
David,
Thank you for the link.  It is good to know that "new Voice" can be use instead of "\new Staff".
Voice and Staff are different things. If you write \new Voice and don’t explicitly create a Staff context, it will be created automatically. Thus,

<<
  \new Voice = "melody" {
    a1 a4. a8 a2
  }
  \new Lyrics \lyricsto "melody" {
    These are the words
  }
>>
is the same as
<<
  \new Staff {
    \new Voice = "melody" {
      a1 a4. a8 a2
    }
  }
  \new Lyrics \lyricsto "melody" {
    These are the words
  }
>>
See also http://lilypond.org/doc/v2.18/Documentation/learning/introduction-to-the-lilypond-file-structure. The Learning Manual provides a very useful introduction into such fundamental concepts used in LilyPond and it will help you a lot in understanding how LilyPond works.

Best regards,
Simon

reply via email to

[Prev in Thread] Current Thread [Next in Thread]