blob: ace6c5effe715aae0c07128d5889e637fb63a47d (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
\include "deutsch.ly"
\include "stimmen.ly"
\include "texte.ly"
\pointAndClickOff
#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
#(set-default-paper-size "kindle")
\header {
tagline = ""
}
\paper {
top-margin = 5
}
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Lyrics = "textEinsS" {}
\new Lyrics = "textZweiS" {}
\new Lyrics = "textDreiS" {}
\new Lyrics = "textVierS" {}
\new Staff {
<<
\new Voice = "sopran" { \global \voiceOne \sopranMelodie }
\new Voice = "alt" { \global \voiceTwo \altMelodie }
>>
}
% \new Lyrics = "textEinsA" {}
% \new Lyrics = "textZweiA" {}
% \new Lyrics = "textDreiA" {}
% \new Lyrics = "textVierA" {}
% \new Lyrics = "textEinsT" {}
% \new Lyrics = "textZweiT" {}
% \new Lyrics = "textDreiT" {}
% \new Lyrics = "textVierT" {}
\new Staff <<
\new Voice = "tenor" { \global \clef "bass" \voiceOne \tenorMelodie }
\new Voice = "bass" { \global \clef "bass" \voiceTwo \bassMelodie }
>>
\new Lyrics = "textEinsB" {}
\new Lyrics = "textZweiB" {}
\new Lyrics = "textDreiB" {}
\new Lyrics = "textVierB" {}
\context Lyrics = "textEinsS" \lyricsto "sopran" \textI
\context Lyrics = "textZweiS" \lyricsto "sopran" \textII
\context Lyrics = "textDreiS" \lyricsto "sopran" \textIII
\context Lyrics = "textVierS" \lyricsto "sopran" \textIV
% \context Lyrics = "textEinsA" \lyricsto "alt" \extraI
% \context Lyrics = "textZweiA" \lyricsto "alt" \extraII
% \context Lyrics = "textDreiA" \lyricsto "alt" \extraIII
% \context Lyrics = "textVierA" \lyricsto "alt" \extraIV
% \context Lyrics = "textEinsT" \lyricsto "tenor" \textI
% \context Lyrics = "textZweiT" \lyricsto "tenor" \textII
% \context Lyrics = "textDreiT" \lyricsto "tenor" \textIII
% \context Lyrics = "textVierT" \lyricsto "tenor" \textIV
\context Lyrics = "textEinsB" \lyricsto "bass" \extraI
\context Lyrics = "textZweiB" \lyricsto "bass" \extraII
\context Lyrics = "textDreiB" \lyricsto "bass" \extraIII
\context Lyrics = "textVierB" \lyricsto "bass" \extraIV
>>
\layout {
indent = #0
}
}
|