blob: b732731b493b1ce53860b60dee9964318ae59cbc (
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
35
36
37
38
|
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "texte.ly"
\include "stimmen.ly"
#(ly:set-option 'relative-includes #f)
\score {
\header {
title = "6. Chor"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = sopran { \global \sopranMelodie }
>>
\new Lyrics \lyricsto sopran { \sopranTextVI }
\new Staff <<
\new Voice = alt { \global \keepWithTag #'partVI \altMelodie }
>>
\new Lyrics \lyricsto alt { \altTextVI }
\new Staff <<
\clef "G_8"
\new Voice = tenor { \global \keepWithTag #'partVI \tenorMelodie }
>>
\new Lyrics \lyricsto tenor { \tenorTextVI }
\new Staff <<
\clef "bass"
\new Voice = bass { \global \bassMelodie }
>>
\new Lyrics \lyricsto bass { \bassTextVI }
>>
\layout {
indent = #0
}
}
|