blob: a44ca8763f79afeeea0ea584f679f2043b4aac60 (
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
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8
\version "2.12"
\include "dynArt.ly"
global = {
\key c \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
}
% Die Stimmen
sopranMelodie = \relative c' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
a4 dis4 a4
}
>>
}
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
}
>>
}
|