blob: d84f67e73819447c7bf5109141cfaed52578bae6 (
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
34
|
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "stimmenXLII.ly"
\include "texteXLII.ly"
#(ly:set-option 'relative-includes #f)
\score { % XLII % {{{
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
\label #'ChorXLII
\new Voice = sopran { \globalXLII \sopranMelodieXLII \bar "|." }
}
\new Lyrics \lyricsto sopran { \sopranTextXLII }
\new Staff {
\new Voice = alt { \globalXLII \altMelodieXLII }
}
\new Lyrics \lyricsto alt{ \altTextXLII }
\new Staff {
\new Voice = tenor { \globalXLII \tenorMelodieXLII }
}
\new Lyrics \lyricsto tenor { \tenorTextXLII }
\new Staff {
\new Voice = bass { \globalXLII \bassMelodieXLII }
}
\new Lyrics \lyricsto bass { \bassTextXLII }
>>
\layout {
indent = #0
}
\header {
title = "Nr. 42 Chor"
}
} % }}}
|