blob: 9ae725259bff5d3f9368c447727326e2796cf718 (
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
105
106
107
|
%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 8
}
% Die Stimmen
pausenFrauen = {
s8 |
s1*3 |
s2. r8 s |
s1*3 |
s2. r8 s |
s1 |
s2. r8 s |
s1*3 |
s2. r8 \bar "|."
}
pausenMaenner = {
s8 |
s1*3 |
s2. r8 s |
s1*3 |
s2. r8 s |
s1*5 |
s2. r8 \bar "|."
}
melodieSopran = \relative c'' {
c8^\f |
c4. c8 c4. b8 |
a4 g f4. f8 |
d'4^\< c f4.^\! e16[ d] |
c4(^\> b) a^\! s8 c |
c4. c8 c4. b8 |
a4 g f r8 f' |
f[^\> h,]^\! h[ c] g(^\< f'4)\! e8 |
d2^\> c4^\! s8 c^\mf |
c4.^\< a8 d4.^\! c8^\> |
b4 a b^\! s8 b |
b[ a] g[ f] e[ f] g[ a] |
b[ c16 d] c8[ b] a4 r8 f'^\f |
f[ a,] a4 g8[ d'] c[ b] |
a4(^\> g) f^\fermata^\! s8 \bar "|."
}
melodieAlt = \relative f' {
f8 |
f4. e8 f4 g |
f e f es |
d e f g |
e2 f4 s8 f |
f4. e8 f4 g |
f e f f_\< |
f e g_\! g |
g4.( f8) e4 s8 e |
fis4. fis8 g4 g |
g fis g s8 g |
g[ f] e[ d] c[ d] e[ f] |
f4 g f f_\f |
f f f f |
f( e) f s8 \bar "|."
}
melodieTenor = \relative a {
a8 |
a4. b8 c4 d |
c b a a |
b c c d |
g,( c) c s8 a |
a4. b8 c4 d |
c b a a |
h8[ d] c4 d c |
c( h) c s8 c |
a4 d d es |
d d d g, |
e8[ f] g[ a] b4 b8[ a] |
g4 g8[ c] c4 c |
d d d d |
c( b) <a f> s8 \bar "|."
}
melodieBass = \relative f {
f8_\f |
f4. g8 a4 b |
c c, d c |
b_\< b a_\! b |
c2_\> f4_\! s8 f |
f4. g8 a4 b |
c c, d d_\< |
g a h_\! c |
g2_\> c,4_\! s8 c_\mf |
d4._\< c8 b4_\! c_\> |
d d g,_\! g |
c c c c |
c e f a_\f |
d, c b g |
c2_\> f,4_\!_\fermata s8 \bar "|."
}
|