summaryrefslogtreecommitdiff
path: root/hr/schott/life/stimmen.ly
blob: 2df1b96682bf5be2b06fe8736d540d36a84da03d (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 encoding=utf8 et

  \version "2.12"
  \include "dynArt.ly"

  global = {
    \key e \major
    %\override Staff.TimeSignature #'style = #'()
    \time 4/4
    %\autoBeamOff
  }

% Die Stimmen

  sopranMelodie = \relative c' {
    <<
      { \meta }
      %\sopranArt
      %the actual tune
      {
        <c g'>4 <c g'>4 r8 
	r1 
      }
    >>
  }

  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 
      }
    >>
  }