summaryrefslogtreecommitdiff
path: root/hr/stch/tenor/wetter/II/stimmen.ly
blob: 4d6bfbe513b1953437caf03e680bc266fcf25767 (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
%some settings% vim: ai sw=2 lbr nu et

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

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

% Die Stimmen

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

  altMelodie = \relative c' {
    <<
      { \meta }
      %\altArt
      %the actual tune
      {
	r1 
      }
    >>
  }
  
  tenorMelodie = \relative c' {
    <<
      { \meta }
      %\tenorArt
      %the actual tune
      \clef "treble_8"
      {
	f2( e4 
        d2) r4 
        c2 r8 c8 
        c2 r4 
        d2 r4 
        \repeat unfold 2 {
          f2( e4 
          d2) r4 
          c2( r8 c8 
          c2 r4 
          d2 r4 
        }
        cis2. ~ 
        cis2 r4 
        \key bes \major
        e4.( c4. 
        bes2) r4 
        bes4\( a4 g4 
        a4. g4. ~ 
        g4. f4. ~ 
        f4. g4. ~ 
        g4. a4. 
        b4 b4\) r4 
        R2. 
        \key f \major
        d2( d4 
        d4 e4. c8 
        a4 bes2) 
        R2.*2 
        a2 r4 
        bes2 r4 
        a2. ~ 
        a2. 
      }
    >>
  }

  bassMelodie = \relative c {
    <<
      { \meta }
      %\bassArt
      %the actual tune
      \clef bass
      {
	r1 
      }
    >>
  }