blob: 05451d2d23297828eed01bf843c22884491bb48e (
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
|
\include "deutsch.ly"
\score {
\header {
piece = \markup { \bold "11. Chor" }
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
<<
\new Voice = frauen { \globalXI \pausenXI }
\new Voice = sopran { \globalXI \voiceOne \sopranXI }
\new Voice = alt { \globalXI \voiceTwo \altXI }
>>
}
\new Lyrics = textXI
\new Staff <<
\new Voice = maenner { \globalXI \clef "bass" \pausenXI }
\new Voice = tenor { \globalXI \clef "bass" \voiceOne \tenorXI }
\new Voice = bass { \globalXI \clef "bass" \voiceTwo \bassXI }
>>
\context Lyrics = textXI \lyricsto bass \textXI
>>
\layout {
indent = #0
}
}
|