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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.12"
\include "dynArt.ly"
global = {
%\autoBeamOff
}
% Die Stimmen
sopranMelodie = \relative c'' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
r2 g2
e2 r8 f8 g8[ e8]
b'2. c8[ b8]
a8[ b8] g2 f4
e1
e4. f8 g8[ c,8] e8[ g8]
d'2 e4( d4)
d8[ g,8] g2 e4
d1
g4 <bes g>2 ees,4
<c' g>4 <bes g>8[ <c g>8] \times 2/3 { d4 e4 d4 }
bes4. g8 f4 ees4
f1
f8[ g8] a2 f4
g4 c4 c4 a8[ c8]
e4. <c a>8 a4 e4
d1
r4 c4 d4 e4
g2 ~ g8[ f8] g8[ e8]
b'2. c8([ b8)]
a8[ b8] g2 f4
<g e>2 r4 c4
e8[ d8] c4 \times 2/3 { a4 c4 e4 }
<a e>1
r4 r8 c,8 a4 e4
d2 f2
d'1
}
>>
}
altMelodie = \relative c'' {
<<
{ \meta }
%\altArt
%the actual tune
{
r2 g2
<d b>2 r8 f8 g8[ e8]
<e b>2. c'8[ b8]
e,4 d4 d4 c4
b1
d4. d8 d8[ c8] e8[ g8]
<a e>2 <a f>2
<g d>8[ d8] d2 e4
<c a>2( b2)
d4 d2 ees4
ees4 ees8[ ees8] \times 2/3 { <aes f>4 q4 q4 }
<f d>4. g8 f4 ees4
<ees ces>1
d8[ d8] d2 d4
e4 <g e>4 q4 a8[ c8]
<c f,>4. e,8 <e c>4 c4
c1
r4 c4 d4 e4
<e d>2 ~ q8[ f8] g8[ e8]
<e c>2. c'8([ b8)]
e,4 d4 d4 c4
b2 r4 <g' e>4
<a e>8 q8 q4 \times 2/3 { a4 c4 e4 }
<c fis,>1
r4 r8 c8 a4 e4
<c a>2 c2
<g' e>1
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
%\tenorArt
%the actual tune
{
\clef "treble_8"
r2 g2
g2 r8 f8 g8[ e8]
g2. c8[ b8]
c4 b4 bes4 aes4
g1
bes4. bes8 bes8[ c,8] e8[ g8]
c2 c2
b8[ b8] b2 e,4
f1
bes4 bes2 ees,4
c'4 c8[ c8] \times 2/3 { ces4 ces4 ces4 }
bes4. g8 f4 ees4
aes1
bes8[ bes8] bes2 bes4
a4 a4 a4 a8[ c8]
c4. c8 a4 <a f>4
q1
r4 c,4 d4 e4
g2 ~ g8[ f8] g8[ e8]
g2. c8([ b8)]
c4 b4 bes4 aes4
g2 r4 bes4
c8[ c8] a4 \times 2/3 { a4 c4 e4 }
<fis c>1
r4 r8 c8 a4 e4
f2 aes2
b1
}
>>
}
bassMelodie = \relative c' {
<<
{ \meta }
%\bassArt
%the actual tune
\clef bass
{
r2 g2
c,2 r8 f8 g8[ e8]
a,2. c'8[ b8]
f4 e4 ees4 des4
c1
c4. c8 c8[ c8] e8[ g8]
f2 d2
e8[ e8] e2 e4
g,1
ees'4 ees2 ees4
aes4 aes8[ aes8] \times 2/3 { aes4 aes4 aes4 }
g4. g8 f4 ees4
des1
c8[ c8] c2 c4
c4 c4 c4 a'8[ c8]
d,4. d8 d4 d4
g,1
r4 c4 d4 e4
c2 ~ c8[ f8] g8[ e8]
a,2. c'8[ b8]
f4 e4 ees4 des4
c2 r4 c4
f8[ f8] f4 \times 2/3 { a4 c4 e4 }
d,1
r4 r8 c'8 a4 e4
g,2 des'2
c1
}
>>
}
|