blob: f31a5113a20d3739f40b30bdb358930eeec2cab1 (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.12"
\include "dynArt.ly"
global = {
\key g \minor
%\override Staff.TimeSignature #'style = #'()
\time 4/4
%\autoBeamOff
}
% Die Stimmen
sopranMelodie = \relative c' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
d4 g2 g8 g8 d'2 d8 d8 c2 c8 a8
g2 bes8 bes8
}
>>
}
altMelodie = \relative c' {
<<
{ \meta }
%\altArt
%the actual tune
{
r1
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
%\tenorArt
%the actual tune
\clef "treble_8"
{
r1
}
>>
}
bassMelodie = \relative c {
<<
{ \meta }
%\bassArt
%the actual tune
\clef bass
{
r1
}
>>
}
|