blob: d30d5fae0a4dcd866a98b97e1b39968105490cbb (
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
|
global = {
\key f \major
\time 6/4
\autoBeamOff
\partial 4
}
pausen = {
s4 |
s1.*3 |
s1 s4 r |
s1.*7 |
s1 s4 r |
s1. |
s1 s4 r |
s1. |
s2. s2 \bar "|."
}
sopranMelodie = \relative f' {
f4 |
a( b) a c2 d4 |
f( c b a2) c4 |
a2 d4 c2 d4 |
f( c b a2) s4 |
a2 b4 a( d) c |
c2( a4) a2 a4 |
g2 b4 a2 a4 |
a2( g4 f2) a4 |
a2 f4 g2 d'4 |
c2( a4) a2 b4 |
b2 g4 c2 b4 |
a2( d4 cis2) s4 |
d2 a4 g2 g4 |
c2( b4 a2) s4 |
a2 d4 b2 c4 |
a2.~ a2 \bar "|."
}
altMelodie = \relative f' {
f4 |
c( d) c f2 f4 |
a2( g4 f2) g4 |
d2 f4 f2 f4 |
a2( g4 f2) s4 |
f2 f4 f2 g4 |
f2( e4) d2 d4 |
d2 d4 e2 cis4 |
d2.~ d2 e4 |
f2 g4 e2 f4 |
f2( e4) d2 d4 |
d2 d4 f2 d4 |
d2( f4 e2) s4 |
f2 f4 c2 c4 |
c2( d4 f2) s4 |
e2 f4 d2 e4 |
c2.~ c2 \bar "|."
}
tenorMelodie = \relative f {
f4 |
f2 f4 a2 b4 |
c2( d4 c2) c4 |
f,2 f4 a2 b4 |
c2( d4 c2) s4 |
c2 d4 c2 b4 |
a2. f2 f4 |
g2 g4 a2 g4 |
f2( g4 a2) a4 |
c2 d4 c2 b4 |
a2. f2 f4 |
g2 g4 a2 g4 |
f2( g4 a2) s4 |
d,2 d4 e2 e4 |
f2.( c'2) s4 |
a2 a4 g2 g4 |
f2.~ f2 \bar "|."
}
bassMelodie = \relative f {
f4 |
f2 f4 f2 f4 |
f2.~ f2 e4 |
d( c) b a2 g4 |
f2( b4 f'2) s4 |
f2 f4 f2 f4 |
f2( cis4) d2 d4 |
b2 g4 cis2 a4 |
d2.~ d2 c4 |
a2 b4 c2 c4 |
c2( cis4) d2 b4 |
g2 b4 f2 g4 |
a2.~ a2 s4 |
d2 d4 c2 b4 |
a2( g4 f2) s4 |
c'2 d4 g2 c,4 |
f2.~ f2 \bar "|."
}
|