blob: 7ba41ff356aeade32a6fb690383614fa5fc0fc89 (
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
|
\score {
\header {
piece = "Agnus Dei"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frauen { \oneVoice \globalAgnusDei \pausenFrauenAgnusDei }
\new Voice = sopran { \voiceOne \globalAgnusDei \melodieSopranAgnusDei }
\new Voice = alt { \voiceTwo \globalAgnusDei << \melodieAltAgnusDei \artikulationAgnusDei >> }
>>
\new Lyrics \lyricsto alt { \textAgnusDei }
\new Staff <<
\clef "bass"
\new Voice = maenner { \oneVoice \globalAgnusDei \pausenMaennerAgnusDei }
\new Voice = tenor { \voiceOne \globalAgnusDei \melodieTenorAgnusDei }
\new Voice = bass { \voiceTwo \globalAgnusDei << \melodieBassAgnusDei \artikulationAgnusDei >> }
>>
>>
\layout {
% indent = #0
\context {
\Staff
\RemoveEmptyStaves
}
}
}
|