blob: 7d97a4a5cd33b319db3e6d21c819e6478d011323 (
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 "14. Chor" }
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
<<
\new Voice = frauen { \globalXIV \pausenFrauenXIV }
\new Voice = sopran { \globalXIV \voiceOne \sopranXIV }
\new Voice = alt { \globalXIV \voiceTwo \altXIV }
>>
}
\new Lyrics = textXIV
\new Staff <<
\new Voice = maenner { \globalXIV \clef "bass" \pausenMaennerXIV }
\new Voice = tenor { \globalXIV \clef "bass" \voiceOne \tenorXIV }
\new Voice = bass { \globalXIV \clef "bass" \voiceTwo \bassXIV }
>>
\context Lyrics = textXIV \lyricsto bass \textXIV
>>
\layout {
indent = #0
}
}
|