blob: 7198ee48b42da8aa0663e7b5803f47a1a698b497 (
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 "9. Arie (Bass) und Chor" }
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
<<
\new Voice = frauen { \globalIX \pausenFrauenIX }
\new Voice = sopran { \globalIX \voiceOne \sopranIX }
\new Voice = alt { \globalIX \voiceTwo \altIX }
>>
}
\new Lyrics = textIX
\new Staff <<
\new Voice = maenner { \globalIX \clef "bass" \pausenMaennerIX }
\new Voice = tenor { \globalIX \clef "bass" \voiceOne \tenorIX }
\new Voice = bass { \globalIX \clef "bass" \voiceTwo \bassIX }
>>
\context Lyrics = textIX \lyricsto bass \textIX
>>
\layout {
indent = #0
}
}
|