blob: d84f12fea2f7ec80156c8315237fed0eb2135320 (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.18"
global = {
\key f \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
\autoBeamOff
}
% Die Stimmen
sopranMelodie = \relative c'' {
c4. b8 a4 c |
g f8[ a] f4 f\breathe |
g g a8[ h] c4 |
d d8[ e] c2\breathe |
\repeat volta 2 {
d4. c8 b4 g |
c c8[ b] a4 a\breathe |
c4. f,8 b4 a |
g g8[ a] f2 |
}
}
altMelodie = \relative a' {
a4. g8 f4 e |
d e f f\breathe |
f e c8[ d] e4 |
a g g2\breathe |
\repeat volta 2 {
f4. e8 d4 f |
e8[ d] e4 e d\breathe |
g f d f |
f e c2 |
}
}
tenorMelodie = \relative f' {
f4. c8 c4 a |
b b c d\breathe |
d e e8[ d] c4 |
a h c2\breathe |
\repeat volta 2 {
g4. a8 b4 d |
g, c f, a\breathe |
g a b c |
d c a2 |
}
}
bassMelodie = \relative f {
f4. f8 f4 f4 |
f g a b\breathe |
g c a4. g8 |
f4 g c,2\breathe |
\repeat volta 2 {
c4. c8 c4 c |
c a d f\breathe |
e d g, a |
b c f2 |
}
}
|