lilypond-user
[Top][All Lists]
Advanced

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

Odd vertical spacing of lyrics


From: Mike Solomon
Subject: Odd vertical spacing of lyrics
Date: Tue, 18 Jan 2011 10:26:18 -0500

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"

Attachment: 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
  >> 
}


reply via email to

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