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.

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

Reply via email to