blob: c53fbb45c46389ee7845e70c347852844bf8779d (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
\version "2.18"
global = {
\time 6/8
\key c \major
\autoBeamOff
}
punktBoegen = {
\set melismaBusyProperties = #'(beamMelismaBusy)
\slurDashed
\tieDashed
}
strichBoegen = {
\set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy)
\slurSolid
\tieSolid
}
pausen = {
r4 s2 |
s2.*8 |
r2. | \bar "|."
}
sopranMelodie = \relative g' {
s4 g8 g4 g16 g |
g8 g g g a h |
c4 e,8 e4 e16 e |
e8 e e e f g |
a4 c,8 c4 c16 c |
a'8 a a \punktBoegen a( g) \strichBoegen f |
g4 g8 g4 g16 g |
g8 g g \punktBoegen g( f) \strichBoegen e |
d2. |
s | \bar "|."
}
altMelodie = \relative e' {
s4 e8 e4 f16 f |
e8 e e d g g |
e4 c8 c4 d16 d |
c8 c c b d c |
c4 c8 c4 c16 c |
f8 f f \punktBoegen c~ c \strichBoegen c |
d4 d8 d4 d16 d |
c8 c c \punktBoegen e( c) \strichBoegen c |
d2. |
s | \bar "|."
}
tenorMelodie = \relative c' {
s4 c8 c4 g16 g |
e'8 d c g d' d |
c4 a8 a4 e16 e |
c'8 h a c b b |
a4 a8 a4 a16 a |
c8 c c \punktBoegen a~ a \strichBoegen a |
h4 h8 h4 h16 h |
a8 a a \punktBoegen c( a) \strichBoegen a |
h2. |
s | \bar "|."
}
bassMelodie = \relative c {
s4 c8 c4 c16 c |
c8 c c h h h |
a4 a8 a4 a16 a |
a8 a a g g g |
f4 f'8 f4 f16 e |
d8 d d \punktBoegen d~ d \strichBoegen d |
g4 g8 g4 g16 g |
g8 g g \punktBoegen g~ g \strichBoegen g |
g2. |
s | \bar "|."
}
begleitSopranMelodie = \relative e' {
e2.~ |
e4. g |
e2.~ |
e |
e( |
f |
g~ |
g |
g) |
s | \bar "|."
}
begleitAltMelodie = \relative e' {
e2.~ |
e4. d |
c2.~ |
c |
c~( |
c |
d |
c |
d) |
s | \bar "|."
}
begleitTenorMelodie = \relative c' {
c2.~ |
c4. h |
c2.~ |
c4. b |
a2.~( |
a |
c |
a |
h) |
s | \bar "|."
}
begleitBassMelodie = \relative c' {
c2.~ |
c4. h |
a2.~ |
a4. g |
f2.( |
d |
g~ |
g |
g) |
s | \bar "|."
}
|