lilypond-user
[Top][All Lists]
Advanced

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

Re: Lyrics not lining with different voice


From: Eluze
Subject: Re: Lyrics not lining with different voice
Date: Wed, 20 Nov 2013 06:36:25 -0800 (PST)

ayutheos wrote
> It doesn't work when I add more lines of lyrics to it. I'm using the
> shortened
> code below which gives me a funky line arrangements, but my music breaks
> at end
> of "part one" so the lyrics line spacing returns to normal on the next
> staff.

please reply to all

each time you \write \new Lyrics a _new_ context is created which also means
a new line. to write to the same line use \context

I guess this is what you want:

\score {
  <<
    \new Staff {
      \repeat volta 3 {
        \new Voice = "intro"       { \melodyI }
        \new Voice = "part one"    { \melodyII }
      }
      \new Voice = "part two"    { \melodyIII }
    }
    % lyrics line 1
    \new Lyrics = " line 1" \lyricsto "part one" {
      \lyricI
    }
    \context Lyrics = " line 1" \lyricsto "part two" {
      \lyricIV
    }
    \new Lyrics = " line 2" \lyricsto "part one" {
      \altI
    }
    \context Lyrics = " line 2" \lyricsto "part two" {
      \altIV
    }
    % lyrics line 2
[...]


Eluze





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Lyrics-not-lining-with-different-voice-tp154134p154202.html
Sent from the User mailing list archive at Nabble.com.



reply via email to

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