lilypond-user
[Top][All Lists]
Advanced

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

Re: Polyphony and (disappearing) lyrics


From: Jean-Charles Malahieude
Subject: Re: Polyphony and (disappearing) lyrics
Date: Thu, 19 Jul 2007 20:38:06 +0200
User-agent: Thunderbird 2.0.0.4 (X11/20070620)

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





reply via email to

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