\version "2.18.2" \language "english" \paper { #(set-paper-size "letter") } global = { \key d \major \numericTimeSignature \time 3/4 \autoBeamOff } sopranoVoice = \relative c'' { \global \dynamicUp \oneVoice { c4 g8 c, g' } << { \voiceOne c b2. } \new Voice { \voiceTwo c8 g4 f e } % lyrics for soprano 2 \new Lyrics \lyricmode { AL8 -- LE4 -- LU -- IA, } >> \oneVoice bf'2. a2. } verseSopranoVoice = \lyricmode { % Lyrics follow here. Al -- le -- lu -- ia, Al -- le -- lu -- ia, } altoVoice = \relative c' { \global \dynamicUp < c g' >2. d2. << { \voiceOne f8[ e] d[( e] f4) f4( c) f } \new Voice { \voiceTwo d2. c2. } % lyrics for alto 2 \new Lyrics \lyricmode { LU -- IA, } >> } verseAltoVoice = \lyricmode { AL -- LE -- Al -- le -- lu -- ia, } tenorVoice = \relative c' { \global \dynamicUp % Music follows here. < e, g >2. < d g >2. < f bf >2. < f c' >2. } verseTenorVoice = \lyricmode { Al -- le -- lu -- ia, } bassVoice = \relative c { \global \dynamicUp c2. g < bf d >2. < f' f, >2. } verseBassVoice = \lyricmode { Al -- le -- lu -- ia, } sopranoVoicePart = \new Staff \with { instrumentName = "Soprano" midiInstrument = "choir aahs" } { \sopranoVoice } \addlyrics { \verseSopranoVoice } altoVoicePart = \new Staff \with { instrumentName = "Alto" midiInstrument = "choir aahs" } { \altoVoice } \addlyrics { \verseAltoVoice } tenorVoicePart = \new Staff \with { instrumentName = "Tenor" midiInstrument = "choir aahs" } { \clef "treble_8" \tenorVoice } \addlyrics { \verseTenorVoice } bassVoicePart = \new Staff \with { instrumentName = "Bass" midiInstrument = "acoustic grand" } { \clef bass \bassVoice } \addlyrics { \verseBassVoice } \score { << \sopranoVoicePart \altoVoicePart \tenorVoicePart \bassVoicePart >> \layout { } \midi { \tempo 4 = 72 } }