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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.18"
global = {
\key c \major
%\override Staff.TimeSignature #'style = #'()
\time 3/4
\autoBeamOff
}
punktBoegen = {
\set melismaBusyProperties = #'()
\slurDashed
\tieDashed
}
strichBoegen = {
\set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy)
\slurSolid
\tieSolid
}
% Die Stimmen
ifdef(`Pausen-statt-Fermaten',`
pausen = {
s2.*3 |
s2 s8 r |
s2.*2 |
s2 s8 r |
s2.*3 |
s4 s8 r s4 |
s2.*4 | \bar "|."
}
')
melodieSopran = \relative g' {
g4 g g |
a2 a4 |
h2 h4 |
\punktBoegen c2~ ifdef(`Pausen-statt-Fermaten',`c8 s',`c4') |
d4~ d \strichBoegen c |
h2 c4 |
ifdef(`Pausen-statt-Fermaten',`a2~ a8 s',`a2.') |
a4 f a |
h2 h4 |
c2 h4 |
ifdef(`Pausen-statt-Fermaten',`a4. s8',`a2') a4 |
c \punktBoegen h~ h \strichBoegen |
a2 g4 |
g2.~ |
g |
}
melodieAlt = \relative g' {
g4 g g |
g2 g4 |
g2 d4 |
\punktBoegen e2~ ifdef(`Pausen-statt-Fermaten',`e8 s',`e4') |
g4( f) \strichBoegen f |
g2 g4 |
ifdef(`Pausen-statt-Fermaten',`g2~ g8 s',`g2.') |
d4 d d |
d2 d4 |
e( c) d |
ifdef(`Pausen-statt-Fermaten',`e4. s8',`e2') c4 |
e \punktBoegen e( d) \strichBoegen |
c( e) e |
e2.( |
d) |
}
melodieTenor = \relative h {
h4 h h |
c2 c4 |
d2 g,4 |
\punktBoegen g2~ ifdef(`Pausen-statt-Fermaten',`g8 s',`g4') |
a4~ a \strichBoegen a |
c2 c4 |
ifdef(`Pausen-statt-Fermaten',`c2~ c8 s',`c2.') |
c4 a c |
g( e) d |
g2 g4 |
ifdef(`Pausen-statt-Fermaten',`g4. s8',`g2') g4 |
g \punktBoegen g~ g \strichBoegen |
g2 c4 |
c( a2 |
h2.) |
}
melodieBass = \relative d {
d4 d d |
d2 d4 |
d2 d4 |
\punktBoegen d2~ ifdef(`Pausen-statt-Fermaten',`d8 s',`d4') |
d4~ d \strichBoegen d |
e2 e4 |
ifdef(`Pausen-statt-Fermaten',`f2~ f8 s',`f2.') |
f4 f f |
e2 e4 |
a,2 h4 |
ifdef(`Pausen-statt-Fermaten',`c4. s8',`c2') e4 |
d \punktBoegen d~ d \strichBoegen |
d2 e4 |
g2.~ |
g |
}
|