\version "2.24.3" \language deutsch Song.Meta = { \key f \major \time 3/8 \partial 8 \autoBeamOff s8 | s4.*3 | s4 \breathe s8 | s4.*3 | s4 \bar "|." } Song.Melody = \relative c' { \autoBeamOff c'8 | 4 b8 | a4 d8 | c[ b] a | g4 c8 | g[ a] b | c4 f,8 | 4 e8 f4 } Song.A = \fixed c' { f8 | f[ g] d | c4 f8 | 4 8 | e4 c8 | d4 8 | f4 c8 | d4 c8 | 4 } Song.T = \fixed c { a8 | a[ b] f | f4 8 | 4 d8 | e4 f8 | 4 8 | a4 8 | g4 8 | a4 } Song.B = \relative c { c8 | f,4 8 | 4 b8 | a4 b8 | c4 a8 | b4 8 | a4 8 | b4 c8 | f,4 } Song.Lyrics = \lyricmode { \set stanza = "V/A" \repeat unfold 3 {Hal -- le -- lu -- ja,} Hal -- le -- lu -- ja. } Song.MelodyScore = << \new Voice = "melody" <<\Song.Meta \Song.Melody>> \new Lyrics \lyricsto "melody" {\Song.Lyrics} >> Song.SATBScore = \new ChoirStaff << \new Staff <<\Song.Meta \new Voice = "melody" <<\voiceOne \Song.Melody>> \new Voice = "Alt" <<\voiceTwo \Song.A>> >> \new Lyrics \lyricsto "melody" {\Song.Lyrics} \new Staff << \clef bass \Song.Meta \new Voice = "Tenor" <<\voiceOne \Song.T>> \new Voice = "Bass" <<\voiceTwo \Song.B>> >> >>