Aaaah, that's because the \header part was *inside* the \score part:

\score {
  \header {
    % title, composer, tagline
  }
  <<
    \choirPart
  >>
  % etc.
}

If you change the structure like this...

\header {
  % title, composer, tagline
}
\score {
  <<
    \choirPart
  >>
  % etc.
}

...everything should be back again.

Cheers, 
Klaus



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/New-verses-tp176383p176409.html
Sent from the User mailing list archive at Nabble.com.

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to