blob: 49516fdc0fd302aec9b31ea23f325adbeb997ab6 (
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
30
31
32
33
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frauen { \globalKyrie \oneVoice \pausenFrauenKyrie }
\new Voice = sopran { \globalKyrie \voiceOne << \melodieSopranKyrie \artikulationFrauenKyrie >> }
\new Voice = alt { \globalKyrie \voiceTwo \melodieAltKyrie }
>>
\new Lyrics = textFrauen {}
\new Lyrics = textTenor {}
\new Staff <<
\new Voice = maenner { \clef "bass" \globalKyrie \oneVoice \pausenMaennerKyrie }
\new Voice = tenor { \clef "bass" \voiceOne \globalKyrie \melodieTenorKyrie }
\new Voice = bass { \clef "bass" \voiceTwo \globalKyrie << \melodieBassKyrie \artikulationMaennerKyrie >> }
>>
\new Lyrics = textBass {}
\context Lyrics = textFrauen \lyricsto alt { \textFrauenKyrie }
\context Lyrics = textTenor \lyricsto tenor { \textTenorKyrie }
\context Lyrics = textBass \lyricsto bass { \textBassKyrie }
>>
\header {
piece = "Nr. 1 Kyrie"
}
\layout {
indent = #0
\context {
\Staff
\RemoveEmptyStaves
}
}
}
|