blob: a2f2e73756e7cbfade3b251e3115d8620329e9dd (
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 = "Gloria"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frauen { \oneVoice \globalGloria \pausenFrauenGloria }
\new Voice = sopran { \voiceOne \globalGloria \melodieSopranGloria }
\new Voice = alt { \voiceTwo \globalGloria << \melodieAltGloria \artikulationGloria >> }
>>
\new Lyrics \lyricsto alt { \textGloria }
\new Staff <<
\clef "bass"
\new Voice = maenner { \oneVoice \globalGloria \pausenMaennerGloria }
\new Voice = tenor { \voiceOne \globalGloria \melodieTenorGloria }
\new Voice = bass { \voiceTwo \globalGloria << \melodieBassGloria \artikulationGloria >> }
>>
>>
\layout {
% indent = #0
\context {
\Staff
\RemoveEmptyStaves
}
}
}
|