blob: bd5241e75c9965094e9edb8037ada82d9a396b36 (
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 = "Kyrie"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frauen { \oneVoice \globalKyrie \pausenFrauenKyrie }
\new Voice = sopran { \voiceOne \globalKyrie \melodieSopranKyrie }
\new Voice = alt { \voiceTwo \globalKyrie << \melodieAltKyrie \artikulationKyrie >> }
>>
\new Lyrics \lyricsto alt { \textKyrie }
\new Staff <<
\clef "bass"
\new Voice = maenner { \oneVoice \globalKyrie \pausenMaennerKyrie }
\new Voice = tenor { \voiceOne \globalKyrie \melodieTenorKyrie }
\new Voice = bass { \voiceTwo \globalKyrie << \melodieBassKyrie \artikulationKyrie >> }
>>
>>
\layout {
% indent = #0
\context {
\Staff
\RemoveEmptyStaves
}
}
}
|