\version "2.16.0" \layout { \context { \Voice \consists "Melody_engraver" \override Stem #'neutral-direction = #'() } } global = { \key g \major \time 2/2 } sopranoVoice = \relative c'' { \global \dynamicUp % Die Noten folgen hier. g2 g4. e8 g2 r4 g4 fis2 fis2 fis2. r4 g2 a4. a8 b2 r4 b4 c2 b2 fis2. r4\repeat volta 2 { } } verseSopranoVoice = \lyricmode { % Liedtext folgt hier. Wait for the Lord, whose day is near. Wait for the Lord: keep watch, take heart! } altoVoice = \relative c' { \global \dynamicUp % Die Noten folgen hier. e2 e4. e8 e2 r4 e4 e2 e2 dis2. r4 e2 g4. g8 g2 r4 g4 e2 eis2 e2. r4 } verseAltoVoice = \lyricmode { % Liedtext folgt hier. } tenorVoice = \relative c'' { \global \dynamicUp % Die Noten folgen hier. g2 g4. g8 a2 r4 a4 a2 a2 g2. r4 g2 b4. b8 b2 r4 e,4 fis(e4) d2 e2. r4 } verseTenorVoice = \lyricmode { % Liedtext folgt hier. } bassVoice = \relative c { \global \dynamicUp % Die Noten folgen hier. e2 e4. e8 c2 r4 c4 a2 a2 b2. r4 e2 d4. d8 g2 r4 g4 a,2 b2 e2. r4 } verseBassVoice = \lyricmode { % Liedtext folgt hier. } sopranoVoicePart = \new Staff \with { instrumentName = "Sopran" midiInstrument = "choir aahs" } { \sopranoVoice } \addlyrics { \verseSopranoVoice } altoVoicePart = \new Staff \with { instrumentName = "Alt" 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 = "choir aahs" } { \clef bass \bassVoice } \addlyrics { \verseBassVoice } \score { << \sopranoVoicePart \altoVoicePart \tenorVoicePart \bassVoicePart >> \layout { } \midi { \tempo 4=100 } }