blob: 780dcde1606cde2902209af4191bd40450500b79 (
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
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.14"
\include "dynArt.ly"
global = {
\key bes \major
%\override Staff.TimeSignature #'style = #'()
\time 3/4
%\autoBeamOff
}
% Die Stimmen
sopranMelodie = \relative c'' {
<<
{ \meta }
\sopranArt
%the actual tune
{
\repeat unfold 4 { bes4 a8 bes8 g4 }
\repeat volta 2 {
\repeat unfold 12 { bes4 a8 bes8 g4 }
\repeat unfold 4 {
d'4 c8 d8 bes4
}
g'4 g8 g8 f8( ees8)
d4 d8 d8 c8( bes8)
c4 c8 c8 d8( c8)
g4 g8 g8 g4
\repeat unfold 2 {
d8 e8 fis8 g8 a8 bes8
c8 d8 c4 bes4
}
\repeat unfold 4 {
bes4 a8 bes8 g4
}
} \alternative {
{
\repeat unfold 4 {
bes4 a8 bes8 g4
}
}
{
g2. ~
g2. ~
g2. ~
g2.
d'4 c8 d8 g,4 ~
g2.
}
}
\bar "|."
}
>>
}
altMelodie = \relative c'' {
<<
{ \meta }
\altArt
%the actual tune
{
\repeat unfold 4 { R2. }
\repeat volta 2 {
\repeat unfold 2 { g2. f2. ees2. d2. }
\repeat unfold 4 { g4 g8 g8 g4 }
\repeat unfold 4 { bes4 a8 bes8 g4 }
\repeat unfold 4 { g4 g8 g8 g4 }
\repeat unfold 2 { d2. e4( fis4) g4 }
d2. c2.
f2. ees2.
} \alternative {
{
d2. ~
d2. ~
d2.
R2.
}
{
d2. ~
d2. ~
d2. ~
d2.
bes'4 a8 bes8 g4 ~
g2.
}
}
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
\tenorArt
%the actual tune
\clef "treble_8"
{
\repeat unfold 4 { R2. }
\repeat volta 2 {
\repeat unfold 4 { R2. }
ees2. d2. c2. bes2.
c4 c8 c8 c4
d4 d8 d8 d4
ees4 ees8 ees8 ees4
d4 d8 d8 d4
d2. e2. f4( ees4) d4
g8( f8) ees4 d4
d4 ees8 ees8 d8( c8)
d4 d8 d8 d4
ees4 ees8 ees8 f8( ees8)
d4 d8 d8 d4
\repeat unfold 4 { bes4 a8 bes8 g4 }
\repeat unfold 4 { g2. }
} \alternative {
{
g2. ~
g2. ~
g2.
R2.
}
{
\repeat unfold 4 { bes4 a8 bes8 g4 }
R2.
R2.
}
}
}
>>
}
bassMelodie = \relative c {
<<
{ \meta }
\bassArt
%the actual tune
\clef bass
{
\repeat unfold 4 { R2. }
\repeat volta 2 {
\repeat unfold 8 { R2. }
ees4 ees8 ees8 ees4
g4 g8 g8 g4
c4 c8 c8 c4
\repeat unfold 5 { g4 g8 g8 g4 }
\repeat unfold 4 { bes4 a8 bes8 g4 }
d2.
d2.
d2.
d2( e4)
f2. ees2. d2. c2.
} \alternative {
{
g2. ~
g2. ~
g2.
R2.
}
{
g2. ~
g2. ~
g2. ~
g2.
R2.
g2.
}
}
}
>>
}
|