blob: d0c153b7906fa5036c41d373196d8f5b2f505dae (
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
|
\include "deutsch.ly"
#(ly:set-option 'relative-includes #t)
\include "Vtexte.ly"
\include "Vstimmen.ly"
#(ly:set-option 'relative-includes #f)
\score {
\header {
title = "5. Chor"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = sopran { \globalV \sopranMelodieV }
>>
\new Lyrics \lyricsto sopran { \sopranTextV }
\new Staff <<
\new Voice = alt { \globalV \altMelodieV }
>>
\new Lyrics \lyricsto alt { \altTextV }
\new Staff <<
\clef "G_8"
\new Voice = tenor { \globalV \tenorMelodieV }
>>
\new Lyrics \lyricsto tenor { \tenorTextV }
\new Staff <<
\clef "bass"
\new Voice = bass { \globalV \bassMelodieV }
>>
\new Lyrics \lyricsto bass { \bassTextV }
>>
\layout {
indent = #0
}
}
|