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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.12"
global = {
\key a \major
%\override Staff.TimeSignature #'style = #'()
\time 3/4
%\autoBeamOff
\partial 4
}
% Die Stimmen
sopranMelodie = \relative c' {
<<
% { \meta }
%\sopranArt
%the actual tune
{
e4
e2 a4
b4( cis4) a4
fis2 gis4
a2 cis4
cis4( e4) d4
cis4( b4) a4
b2.
b2 e,4
e2 a4
b4( cis4) a4
fis2 gis4
a2 cis4
b4( e4) gis,4
a4( gis4) e4
fis2.
e2 e4
d'2 d4
b2 b4
<a e'>2 <b e>4
<a cis>4( <b d>4) <cis e>4
<d fis>2 <cis e>4
e4( d4) cis4
b2.
b2 cis4
d2 cis4
b4( a4) fis4
gis2( a4)
a2\fermata
}
>>
}
altMelodie = \relative c' {
<<
% { \meta }
%\altArt
%the actual tune
{
e4
cis2 cis4
d2 d4
d2 d4
cis2 e4
e2 fis4
e2 e4
e4( cis4 dis4)
e2 d4
cis2 cis4
d2 d4
d4( fis4) eis4
fis2 dis4
e2 e4
e2 e4
e2( dis4)
e2 e4
fis2 fis4
gis4( fis4) gis4
fis2 gis4
a2 a4
<fis a>2 <e a>4
<gis b>2 a4
a2.
<e gis>2 <e fis>4
<d fis>2 <e a>4
fis2 d4
d2.
cis2
}
>>
}
tenorMelodie = \relative c' {
<<
% { \meta }
%\tenorArt
%the actual tune
% \clef "treble_8"
{
e,4
e2 e4
fis2 fis4
a4( cis4) b4
a2 a4
a2 a4
a4( d4) cis4
a2.
a4( gis4) fis4
e2 e4
fis2 fis4
a4( cis4) b4
cis2 a4
b2 b4
a4( b4) gis4
cis4( b2)
gis2 e'4
a,2 a4
b4( a4) b4
cis2 d4
e2 e4
d2 cis4
b2 a4
fis'2.
b,2 ais4
b2 a4
d2 cis4
b2.
a2\fermata
}
>>
}
bassMelodie = \relative c {
<<
% { \meta }
%\bassArt
%the actual tune
\clef bass
{
e4
a,2 a4
<a e'>2 q4
q2 q4
q2 a'4
cis,2 d4
a'2 a4
fis2( b,4)
e2 e4
a,2 a4
a2 a4
a2 a4
<a a'>2 <fis fis'>4
<gis gis'>2 cis4
cis4( b4) cis4
a4( b2)
e2 e4
e2 e4
e2 e4
e2 e4
a2 a4
<d, a'>2 a'4
e2 fis4
dis4( cis4 dis4)
e2 cis4
<b fis'>2 cis4
d2 d4
<< { e2( e,4) } e'2. >>
<a, e'>2
}
>>
}
|