\version "2.14.2" %\paper { annotate-spacing = ##t } \layout { indent = #0 linewidth = #3000 } global = { \key c \major \time 4/4 } priestNotesOne = \relative c' { g1 } priestLyricsOne = \lyricmode { "O Lord open thou our lips" } sopNotesOne = \relative c'' { c4 c c c c c c c } sopLyricsOne = \lyricmode { And our mouths shall show forth thy praise } altoNotesOne = \relative c' { e4 e e e e e e e } tenorNotesOne = \relative c' { g4 g g g g g g g } bassNotesOne = \relative c { c4 c c c c c c c } \score { << \new Voice = "priest" { \clef bass \voiceOne << \global \priestNotesOne >> } \new Lyrics \lyricsto "priest" \priestLyricsOne >> } \score { \new ChoirStaff << \new Staff = "sa" << \new Voice = "sopranos" { \voiceOne << \global \sopNotesOne >> } \new Voice = "altos" { \voiceTwo << \global \altoNotesOne >> } >> \new Lyrics \with { alignAboveContext = #"sa" } \lyricsto "sopranos" \sopLyricsOne \new Lyrics \with { alignBelowContext = #"sa" } \lyricsto "altos" \sopLyricsOne \new Staff = "tb" << \clef bass \new Voice = "tenors" { \voiceOne << \global \tenorNotesOne >> } \new Voice = "basses" { \voiceTwo << \global \bassNotesOne >> } >> \new Lyrics \with { alignAboveContext = #"tb" } \lyricsto "tenors" \sopLyricsOne \new Lyrics \with { alignBelowContext = #"tb" } \lyricsto "basses" \sopLyricsOne >> } priestNotesTwo = \relative c { e4 g g a g g g } priestLyricsTwo = \lyricmode { O God make speed to save us } sopNotesTwo = \relative c'' { c4 c c c c c c } sopLyricsTwo = \lyricmode { O Lord make haste to help us } altoNotesTwo = \relative c' { e4 e e e e e e } tenorNotesTwo = \relative c' { g4 g g g g g g } bassNotesTwo = \relative c { c4 c c c c c c } \score { << \new Voice = "priest" { \clef bass \voiceOne << \global \priestNotesTwo >> } \new Lyrics \lyricsto "priest" \priestLyricsTwo >> } \score { \new ChoirStaff << \new Staff = "sa" << \new Voice = "sopranos" { \voiceOne << \global \sopNotesTwo >> } \new Voice = "altos" { \voiceTwo << \global \altoNotesTwo >> } >> \new Lyrics \with { alignAboveContext = #"sa" } \lyricsto "sopranos" \sopLyricsTwo \new Lyrics \with { alignBelowContext = #"sa" } \lyricsto "altos" \sopLyricsTwo \new Staff = "tb" << \clef bass \new Voice = "tenors" { \voiceOne << \global \tenorNotesTwo >> } \new Voice = "basses" { \voiceTwo << \global \bassNotesTwo >> } >> \new Lyrics \with { alignAboveContext = #"tb" } \lyricsto "tenors" \sopLyricsTwo \new Lyrics \with { alignBelowContext = #"tb" } \lyricsto "basses" \sopLyricsTwo >> }