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