blob: 10efaa72bef8bf0251875146989d1e27cfbea4bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frauen { \oneVoice \globalAgnusDei \pausenFrauenAgnusDei }
\new Voice = sopran { \voiceOne \globalAgnusDei << \melodieSopranAgnusDei \artikulationAgnusDei >> }
\new Voice = alt { \voiceTwo \globalAgnusDei \melodieAltAgnusDei }
>>
\new Lyrics \lyricsto sopran { \textFrauenAgnusDei }
\new Staff <<
\new Voice = maenner { \oneVoice \clef "bass" \globalAgnusDei \pausenMaennerAgnusDei }
\new Voice = tenor { \voiceOne \clef "bass" \globalAgnusDei \melodieTenorAgnusDei }
\new Voice = bass { \voiceTwo \clef "bass" \globalAgnusDei << \melodieBassAgnusDei \artikulationAgnusDei >> }
>>
\new Lyrics \lyricsto bass { \textBassAgnusDei }
>>
\header {
piece = "Nr. 5 Agnus Dei"
}
\layout {
indent = #0
\context {
\Staff
\RemoveEmptyStaves
}
}
}
|