blob: 689a9a13e89c501c2035fa96634dd5343b82d019 (
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
|
%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
melodieSopran = \relative g' {
g4 g g |
a2 a4 |
h2 h4 |
\punktBoegen c2~ c4 |
d~ d \strichBoegen c |
h2 c4 |
a2. |
a4 f a |
h2 h4 |
c2 h4 |
a2 a4 |
c \punktBoegen h~ h \strichBoegen |
a2 g4 |
g2.~ |
g |
}
melodieAlt = \relative g' {
g4 g g |
g2 g4 |
g2 d4 |
\punktBoegen e2~ e4 |
g( f) \strichBoegen f |
g2 g4 |
g2. |
d4 d d |
d2 d4 |
e( c) d |
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~ g4 |
a~ a \strichBoegen a |
c2 c4 |
c2. |
c4 a c |
g( e) d |
g2 g4 |
g2 g4 |
g \punktBoegen g~ g \strichBoegen |
g2 c4 |
c( a2 |
h2.) |
}
melodieBass = \relative d {
d4 d d |
d2 d4 |
d2 d4 |
\punktBoegen d2~ d4 |
d~ d \strichBoegen d |
e2 e4 |
f2. |
f4 f f |
e2 e4 |
a,2 h4 |
c2 e4 |
d \punktBoegen d~ d \strichBoegen |
d2 e4 |
g2.~ |
g |
}
|