summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/angry/stimmen.ly
blob: b0ff126e0416d94e6be86f011314e68c60b70b7b (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
%some settings% vim: ai sw=2 lbr nu et

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

  global = {
    \key g \minor
    %\override Staff.TimeSignature #'style = #'()
    \time 2/2
    %\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"
      {
	r1 
      }
    >>
  }

  bassMelodie = \relative c {
    <<
      { \meta }
      %\bassArt
      %the actual tune
      \clef bass
      {
	R1*9 
        d1 ~ 
        d2 ees2 
        b4 b4 b4 b4 
        c2. c4 
        d2. d4 
        ees4 ees4 e2 
        f2 fis2 
        g2 b,2 
        c2 c2 
        d1 ~ 
        d1 
        g,1 
        R1*23 
        g'2 g4 g4 
        g2 r2 
        c,2 c4 c4 
        f2 bes,2 
        ees2 ees2 
        d4 d4 r2 
        a'4 a4 bes2 ~ 
        bes2 d,2 
        f2 f,2 
        bes2 r2 
        R1*4 
        r2 f'4 f4 
        fis4 fis4 g2 ~ 
        g4 f4 ees4 c4 
        g2 g2 
        c2 a2 
        d2 g,4 g'4 
        cis,4. cis8 cis4 cis4 
        d4. d8 d2 
        r1 
        r1 
        r2 ees4 ees4 
        e4 e4 f2 ~ 
        f4 fis4 g2 ~ 
        g4 f4 ees4 d4( 
        c2) c2 
        d1 ~ 
        d1 
        g,1 
        \time 3/4 
        r4 r4 bes'4 
        bes4. bes8 bes8 f8 
        bes4 bes,4 bes'8. bes16 
        a4 g4. f8 
        f4 f4 f4 
        ees4. d8 c4 
        f4 g2 
        c,2 r4 
        R2.*3 
        r4 r4 g8 g'8 
        ees4 d4 c4 
        g'8 g8 g4 g,4 
        a2 r4 
        r4 r4 a'8 d,8 
        g4 a4 bes4 
        a4 a4. g8 
        f4( e4) d4 
        a'2 a,4 
        d2. ~ 
        d2 e4 
        fis4 fis4 fis4 
        g4 g4 a4 
        bes4 bes,4 c4 
        d2. ~ 
        d2 d4 
        d2 c4 
        d2. 
        g,2.\fermata 
        \bar "|." 
      }
    >>
  }