blob: d1e22357873506cbdf473e40495281031e34aae3 (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.18"
global = {
\key g \major
%\override Staff.TimeSignature #'style = #'()
\time 3/4
\autoBeamOff
}
% Die Stimmen
sopranMelodie = \relative d' {
R2.*2 |
d4 d d |
g4.( fis8) g4 |
d' c\breathe h |
c( h) a |
h2 c4 |
d2. |
R |
d,4 d d |
g4.( fis8) g4 |
d' c\breathe h |
c( h) a |
h2 c4 |
d2. |
R |
a4 d, e |
fis4.( g8) a4 |
g fis\breathe e |
d2 cis4 |
d2 e4 |
fis2. |
R |
d4 d d |
g4.( fis8) e4 |
g a\breathe h |
c( h) a |
d2 a4 |
h2. | \bar "|."
}
altMelodie = \relative d' {
d4 d d |
g4.( fis8) g4 |
a2. |
h2\breathe h4 |
g4.( a8) h4 |
a2 a4 |
g2.\breathe |
d4 d d |
g4.( fis8) g4 |
a2. |
h2\breathe h4 |
g4.( a8) h4 |
a2 a4 |
g2.\breathe |
h4 a fis |
e4.( fis8) g4 |
fis2. |
d2\breathe h4 |
e2 g4 |
fis( d) e |
d2.\breathe |
d4 d d |
g4.( fis8) g4 |
a2. |
h2\breathe c4 |
h4.( a8) g4 |
a2 a4 |
g2.~ |
g | \bar "|."
}
bassMelodie = \relative d {
d4 d' c |
h4.( a8) g4 |
fis4.( e8 fis4) |
g2\breathe g4 |
e( fis) g |
c2 d4 |
g,2( a4)\breathe |
h d c |
h4.( a8) g4 |
fis4.( e8 fis4) |
g2\breathe g4 |
e( fis) g |
c2 d4 |
h2( a4)\breathe |
g d fis |
a2 a4 |
d,2. |
d2\breathe d4 |
e2 e4 |
h'2 a4 |
d,2.\breathe |
d4 d' c |
h4.( a8) g4 |
fis4.( e8 fis4) |
g2\breathe a4 |
h( g) e |
a2.~( |
a4 h) d |
<<
\new Voice { \voiceOne d2. | }
\voiceTwo g,2. |
>> \bar "|."
\bar "|."
}
|