blob: 6d6040a8290481b258bd1a90952217de2e6766cb (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
\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")
\book {
\paper {
top-margin = 5
print-all-headers = ##t
}
\header {
title = "Deutsche Messe"
subtitle = "D872"
composer = "Franz Schubert (1797-1828)"
poet = "Text: Johann Philipp Neumann (1774-1849)"
tagline = ##f
}
\markup { Wohin soll ich mich wenden: Seite \page-ref #'Wohin "0" "?" }
\markup { Ehre sei Gott in der Höhe: Seite \page-ref #'Ehre "0" "?" }
\markup { Noch lag die Schöpfung formlos da: Seite \page-ref #'Noch "0" "?" }
\score { % Wohin % {{{
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Wohin
\new Voice = sopran { \globalWohin \voiceOne \sopranMelodieWohin }
\new Voice = alt { \globalWohin \voiceTwo \altMelodieWohin }
>>
\new Lyrics \lyricsto sopran { \textWohinI }
\new Lyrics \lyricsto sopran { \textWohinII }
\new Lyrics \lyricsto sopran { \textWohinIII }
\new Staff <<
\new Voice = tenor { \clef "bass" \globalWohin \voiceOne \tenorMelodieWohin }
\new Voice = bass { \clef "bass" \globalWohin \voiceTwo \bassMelodieWohin }
>>
>>
\layout {
indent = #0
}
\header {
title = "1. Wohin soll ich mich wenden"
subtitle = ##f
composer = ##f
poet = ##f
}
} % }}}
\score { % Ehre % {{{
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Ehre
\new Voice = sopran { \globalEhre \voiceOne \sopranMelodieEhre }
\new Voice = alt { \globalEhre \voiceTwo \altMelodieEhre }
>>
\new Lyrics \lyricsto sopran { \textEhreI }
\new Lyrics \lyricsto sopran { \textEhreII }
\new Staff <<
\new Voice = tenor { \clef "bass" \globalEhre \voiceOne \tenorMelodieEhre }
\new Voice = bass { \clef "bass" \globalEhre \voiceTwo \bassMelodieEhre }
>>
>>
\layout {
indent = #0
}
\header {
title = "2. Ehre sei Gott in der Höhe"
subtitle = ##f
composer = ##f
poet = ##f
}
} % }}}
\score { % Noch % {{{
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Noch
\new Voice = frauen { \globalNoch \oneVoice \pausenNoch }
\new Voice = sopran { \globalNoch \voiceOne \sopranMelodieNoch }
\new Voice = alt { \globalNoch \voiceTwo \altMelodieNoch }
>>
\new Lyrics \lyricsto sopran { \textNochI }
\new Lyrics \lyricsto sopran { \textNochII }
\new Lyrics \lyricsto sopran { \textNochIII }
\new Lyrics \lyricsto sopran { \textNochIV }
\new Staff <<
\new Voice = maenner { \clef "bass" \globalNoch \oneVoice \pausenNoch }
\new Voice = tenor { \clef "bass" \globalNoch \voiceOne \tenorMelodieNoch }
\new Voice = bass { \clef "bass" \globalNoch \voiceTwo \bassMelodieNoch }
>>
>>
\layout {
indent = #0
}
\header {
title = "3. Noch lag die Schöpfung formlos da"
subtitle = ##f
composer = ##f
poet = ##f
}
} % }}}
}
|