\version "2.10.33"
\header { }
}

global = {
  \key a \minor
  \time 4/4
}

sopranonotes = \relative c' { r1 r r r r }

sopranowords = \lyricmode { }
  
altonotes = \relative c' { r1 r r r r}

altowords = \lyricmode { }

tenornotes = \relative c' { \clef "G_8" r1 | r4 << { c4^\markup { div. } c } \\ { c8 b a4 } >> r | r2^\markup { unis. } a2\fermata | a4( g fis8 f) e( b') | a1 | }
  
tenorwords = \lyricmode { Not yet, not yet, not __ yet! }

bassnotes = \relative c' { \clef bass r1 r r r r }
  
basswords = \lyricmode { }

\score{
  \context ChoirStaff
  <<
    \context Staff = soprano <<
      \context Voice = sop { << \global \sopranonotes >> }
      \lyricsto "sop" \new Lyrics \sopranowords
    >>
    \context Staff = alto <<
      \context Voice = alt { << \global \altonotes >> }
      \lyricsto "alt" \new Lyrics \altowords
    >>
    \context Staff = tenor <<
      \context Voice = ten { << \global \tenornotes >> }
      \lyricsto "ten" \new Lyrics \tenorwords
    >>
    \context Staff = bass <<
      \context Voice = bas { << \global \bassnotes >> }
      \lyricsto "bas" \new Lyrics \basswords
    >>
  >>


\layout {
  \context {
	% a little smaller so lyrics can be closer to the staff. 
    \Staff
    \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3) 
}
}

}
