Hey all, The following snippet is giving me the attached output w/ the soprano line shifted way up after the line break. Is there any way to get the soprano correctly aligned (w/o changing the distance between systems - this minimal example approximates a larger one w/ many systems over several pages).
\version "2.13.47"
minimal.pdf
Description: Adobe PDF document
\paper { system-system-spacing #'basic-distance = #20 }
global = {
\key d \major
\time 3/4
}
sopMusic = \relative c' {
% VERSE ONE
fis4 fis fis | \break
fis4. e8 e4
}
altoMusic = \relative c' {
% VERSE ONE
d4 d d |
d4. b8 b4 |
}
tenorMusic = \relative c' {
a4 a a |
b4. g8 g4 |
}
bassMusic = \relative c {
d4 d d |
g,4. g8 g4 |
}
sopWords = \lyricmode {
Great is Thy faith- ful- ness,
}
altoWords = \lyricmode {
Great is Thy faith- ful- ness,
}
tenorWords = \lyricmode {
Great is Thy faith- ful- ness,
}
bassWords = \lyricmode {
Great is Thy faith- ful- ness,
}
\score {
\new ChoirStaff <<
\new Lyrics = sopranos { s1 }
\new Staff = women <<
\new Voice = "sopranos" {
\voiceOne
<< \global \sopMusic >>
}
\new Voice = "altos" {
\voiceTwo
<< \global \altoMusic >>
}
>>
\new Lyrics = "altos" { s1 }
\new Lyrics = "tenors" { s1 }
\new Staff = men <<
\clef bass
\new Voice = "tenors" {
\voiceOne
<< \global \tenorMusic >>
}
\new Voice = "basses" {
\voiceTwo << \global \bassMusic >>
}
>>
\new Lyrics = basses { s1 }
\context Lyrics = sopranos \lyricsto sopranos \sopWords
\context Lyrics = altos \lyricsto altos \altoWords
\context Lyrics = tenors \lyricsto tenors \tenorWords
\context Lyrics = basses \lyricsto basses \bassWords
>>
}
_______________________________________________ lilypond-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/lilypond-user
