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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.12"
global = {
\key c \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
\partial 4
\autoBeamOff
}
hoeher = \markup { + }
tiefer = \markup { - }
% Die Stimmen
pausen = {
s4 |
s1*3 |
s2 r4 s |
s1*7 |
s2. \bar "|."
}
oberstimmeMelodie = \relative a'' {
\autoBeamOn
a8 g |
f d h e a, e' a16 gis a8 |
e2.^\fermata e4 |
a8 d, c h e c h a |
e'2^\fermata r4 e8 d |
c a' g f e d c c' |
h c h a gis a h gis |
a c, h a g f' e c' |
a f d g e4^\fermata g~ |
g8 d e g h d, c e |
a g a fis g4^\fermata a |
gis8 a h gis c e, a4~ |
a16 c h a gis4 a^\fermata \bar "|."
}
sopranMelodie = \relative a' {
a4 |
a h c d |
e2.^\fermata e4 |
e d c d |
h2^\fermata s4 h |
c d e e |
d2 \phrasingSlurDashed e4\( e\) \phrasingSlurSolid |
c\( d\) e e |
d2 c4^\fermata e |
g e e e |
d2 \phrasingSlurDashed d4\(^\fermata d\) \phrasingSlurSolid |
e d c d8[ c] |
h2 a4^\fermata \bar "|."
}
altMelodie = \relative e' {
e4 |
f e e f |
h,2. e4 |
fis gis a h |
gis2 s4 gis |
a d, c g' |
g2 \phrasingSlurDashed gis4\( e\) \phrasingSlurSolid |
e8[ fis]\( g4\) g g |
a( g) g g |
g c h a |
a2 \phrasingSlurDashed d,4\( a'\) \phrasingSlurSolid |
h h e, f |
f( e) e \bar "|."
}
tenorMelodie = \relative c' {
c4 |
d d c h8[ a] |
gis2. gis4 |
a h c f |
e2 s4 e, |
e <g \tweak NoteHead.style #'cross a> g4. a8 |
\once \override Accidental.stencil = #ly:text-interface::print
\once \override Accidental.text = #tiefer
his2
\once \override Accidental.stencil = #ly:text-interface::print
\once \override Accidental.text = #hoeher
\phrasingSlurDashed h4\(
h\) \phrasingSlurSolid |
a\( h\) c c |
c( h) c c |
d g,8[ c] d[ h] c4 |
c2 \phrasingSlurDashed h4\( a\) \phrasingSlurSolid |
e' gis, a a |
d8[( c] h4) cis4 \bar "|."
}
bassMelodie = \relative a {
a4 |
d gis, a8[ g] f4 |
e2._\fermata d4 |
c h a d |
e2_\fermata s4 e |
a, h c8[ d] e[ f] |
g[ a g f] \phrasingSlurDashed e[\( fis] gis[ e]\) \phrasingSlurSolid |
a4\( g8[\) f] e[ d] c[ e] |
f[ d g g,] c4_\fermata c' |
h c gis a8[ g] |
fis[ e fis d] \phrasingSlurDashed g4\(_\fermata f\) \phrasingSlurSolid |
e8[ d] c[ h] a'[ g] f[ e] |
d[ h] e[ e,] a4_\fermata \bar "|."
}
unterstimmeMelodie = \relative a, {
\autoBeamOn
a4 |
d gis, a8 g f4 |
e2.^\fermata d'4 c h a d |
e2.^\fermata e4 |
a, h c8 d e f |
g a g f e fis gis e |
a4 g8 f e d c e |
f d g g, c4^\fermata c' |
h c gis a8 g |
fis e fis d g4^\fermata f |
e8 d c h a g f e |
d h e4 a^\fermata \bar "|."
}
|