blob: db2e684b4cc21f5675ee95aa2f93aad34d212b8f (
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
|
\version "2.18"
global = {
\time 3/4
\key b \major
\autoBeamOff
}
pausen = {
\repeat volta 2 {
s2.*3 |
s2 r4 |
s2.*3 |
s2 r4 |
}
s2.*3 |
s2 r4 |
s2.*3 |
s2 r4 | \bar "|."
}
sopranMelodie = \relative f' {
\repeat volta 2 {
f4. g8 f4 |
f b b |
c4. d8 c4 |
b2 s4 |
a4 a a |
c4. b8 a4 |
g4. a8 g4 |
f2 s4 |
}
f4. f8 g4 |
a f g |
a a b |
c2 s4 |
b c d |
es4. d8 c4 |
b c a |
b2 s4 | \bar "|."
}
altMelodie = \relative d' {
\repeat volta 2 {
d4. d8 d4 |
d4 d d |
es4. f8 es4 |
d2 s4 |
c c f |
g4. g8 f4 |
e4. f8 e4 |
c2 s4 |
}
c4. f8 e4 |
f f e |
f c g' |
a2 s4 |
f f f |
es4. f8 g4 |
f f f |
f2 s4 | \bar "|."
}
tenorMelodie = \relative b {
\repeat volta 2 {
b4. b8 b4 |
b f f |
a4. b8 a4 |
f2 s4 |
f a c |
c4. c8 c4 |
c4. c8 b4 |
a2 s4 |
}
a4. a8 c4 |
c c c |
c f e |
es2 s4 |
d c b |
b4. b8 es4 |
d es c |
d2 s4 | \bar "|."
}
bassMelodie = \relative b, {
\repeat volta 2 {
b4. b8 b4 |
b b b |
f'4. f8 f4 |
b,2 s4 |
f' f f |
e4. e8 f4 |
c4. c8 c4 |
<f f,>2 s4 |
}
f4. f8 c4 |
f a c |
f, f f |
f2 s4 |
b a as |
g4. f8 es4 |
f4 f <f f,> |
b,2 s4 | \bar "|."
}
|