Le 20.07.2007, Romel Anthony S. Bismonte disait :

I came into this question right at the end of typesetting a piece.


Here's the (minimal) code:


\version "2.10.25"
\paper {
   ragged-right = ##t
}
\score {
   <<
       \new Voice="twinkle" \relative c' {
           c c g' g
           <<
               { a4 a g2 } \\
               { f4 f e2 }
           >>
           \bar "|."
       }
       \new Lyrics \lyricsto "twinkle" {
           Twin -- kle, twin -- kle, lit -- tle star.
       }
   >>
}




As far as I can see, you instantiate here a second voice.
What I would have done is consider it as a chord scheme:

\version "2.10.25"
\paper {
   ragged-right = ##t
}
\score {
   <<
       \new Voice="twinkle" \relative c' {
           c c g' g
           <a f>4 <a f> <e g>2
           \bar "|."
       }
       \new Lyrics \lyricsto "twinkle" {
           Twin -- kle, twin -- kle, lit -- tle star.
       }
   >>
}



which works perfectly as you wanted.

Hoping to be helpful,

Jean-Charles



_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to