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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.18"
global = {
\key f \major
%\override Staff.TimeSignature #'style = #'()
\time 2/4
\partial 8
\autoBeamOff
}
% Die Stimmen
pausenFrauen = {
s8 |
s2*3 |
s4 r8 s |
s2*3 |
s4 r8 s |
s2*3 |
s4 r8 s |
s2*3 |
s4 r8 s |
s2*3 |
s4 r8 \bar "|."
}
melodieSopran = \relative f' {
f8 |
c'[ d] c b |
b4( a8) e |
f[ g] a b |
\grace { a } g4 s8 g |
a[ h] c d |
f4( e8) c |
a[ d] c h |
\grace { h } c4 s8 c |
b4( a8) d |
b[ fis] g[ d'] |
d4( c8) b |
\grace { b } a4 s8 a |
g[ e] f[ a] |
g[ e] f[ c'] |
b16[ c d c b8] a |
\grace { a } g4 s8 b |
a[ f'] e d |
c( d4) b8 |
a[ c] b g |
\grace { g } f4 s8 \bar "|."
}
melodieAlt = \relative f' {
f8 |
a[ b] a g |
g4( f8) c |
c[ e] f g |
\grace { f } e4 s8 e |
f[ d] g h |
h4( c8) g |
g[ f] e d |
\grace { d } c4 s8 a' |
g4( fis8) a |
d,4. b'8 |
b4( a8) g |
\grace { g } f4 s8 c |
c4 c |
c c8[ a'] |
g16[ a b a g8] f |
\grace { f } e4 s8 g |
f[ a] c b |
a( b4) g8 |
f[ a] g e |
\grace { e } f4 s8 \bar "|."
}
melodieMaenner = \relative f {
f8 |
f4 c8 e |
f4. b,8 |
a8[ g] f b |
c4 r8 c |
f,[ f'] e g |
c,4. e8 |
f8[ d] g g, |
c4 r |
r8 d d' fis, |
g[ a] b[ g] |
e[ g c,] e |
f4 r8 f |
b,[ b'] a[ f] |
b,[ b'] a[ f] |
b,4. h8 |
c4 r8 e |
f4 f8 f |
f4. e8 |
f4 b,8 c |
f,4 r8 \bar "|."
}
|