blob: f4485e62db644e6bc7982858bf7aa435a32aac1a (
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 = "1. Chor"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = sopran { \global \sopranMelodie }
>>
\new Lyrics \lyricsto sopran { \sopranTextI }
\new Staff <<
\new Voice = alt { \global \keepWithTag #'partI \altMelodie }
>>
\new Lyrics \lyricsto alt { \altTextI }
\new Staff <<
\clef "G_8"
\new Voice = tenor { \global \keepWithTag #'partI \tenorMelodie }
>>
\new Lyrics \lyricsto tenor { \tenorTextI }
\new Staff <<
\clef "bass"
\new Voice = bass { \global \bassMelodie }
>>
\new Lyrics \lyricsto bass { \bassTextI }
>>
\layout {
indent = #0
}
}
|