blob: 1dd75a2ac8b5247bd19bf965f17968c43c6bc4f9 (
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 es \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
\autoBeamOff
\partial 4
}
% Die Stimmen
melodieSopran = \relative g' {
g4 |
c d es c |
b4. as8 g4 b |
es,4. d8 es4 f |
g2 g4 g |
c d es c |
b4. as8 g4 b |
es,4. d8 es4 f |
g2 g4 b |
es b c b |
as4. b8 g4 b |
es b c b |
as4. b8 g4 g |
a h c8[ es] d[ c] |
h2 c4 \bar "|."
}
melodieAlt = \relative es' {
es4 |
g f es8[ f] g[ es] |
f[ d es] f es4 b |
c4. d8 c4 d8[ c] |
d2 d4 es |
g f es8[ f] g[ es] |
f[ d es] f es4 b |
c4. d8 c4 d8[ c] |
d2 d4 es8[ f] |
g[ as] b[ g] as4 es |
f4. d8 es4 g8[ f] |
es[ f] g[ f] es4 es |
es d es es |
f g g a |
g4.( f8) es4 \bar "|."
}
melodieTenor = \relative c' {
c4 |
g g c c |
f,4. b8 b4 g |
g g c8[ b] as[ c] |
c4( h8[ a]) h4 c |
g g c c |
f,4. b8 b4 g |
g g c8[ b] as[ c] |
c4( h8[ a]) h4 b |
b es es4. b8 |
c4 b b b |
c b as b8[ g] |
c4 b b c |
c d c f8[ es] |
d2 c4 \bar "|."
}
melodieBass = \relative c {
c8[ d] |
es[ d] c[ h] c[ d] es[ c] |
d[ b c] d es4 es8[ d] |
c[ g c] b as[ g] as4 |
g2 g4 c8[ d] |
es[ d] c[ h] c[ d] es[ c] |
d[ b c] d es4 es8[ d] |
c[ g c] b as[ g] as4 |
g2 g4 g'8[ f] |
es[ f] g[ es] as4. g8 |
f[ es d] b es4 es8[ d] |
c[ d] es[ d] es[ f] g[ es] |
f4 b, es c |
f8[ es] f[ d] es4 f |
g( g,) c \bar "|."
}
|