summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/himmelsbogen/stimmen.ly
blob: a4d4eaaf5d7fbb8739ba401ffda3a26c11ce226e (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
133
134
135
136
137
%some settings% vim: ai sw=2 lbr nu et

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

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

% Die Stimmen

  sopranMelodie = \relative c' {
    <<
      % { \meta }
      \sopranArt
      %the actual tune
      {
	a'4. gis8 fis4 a4 
        b4. a8 gis4 e4 
        fis2 gis4. gis8 
        a2 r2 
        a4. gis8 fis4 a4 
        b4. a8 gis4 e4 
        fis2 gis4. gis8 
        a2. r4 
        d4 cis4 d4 e4 
        fis4 e4 d4 cis4 
        d4 cis4 b4 a4 
        cis4 b4 a4 gis4 
        a4. gis8 fis4 a4 
        b4. a8 gis4 e4 
        fis2 gis4. gis8 
        a2. r4 
        fis2 gis4. gis8 
        a2.\fermata r4 
      }
    >>
  }

  altMelodie = \relative c' {
    <<
      % { \meta }
      %\altArt
      %the actual tune
      {
	e4. e8 d4 e4 
        dis4 fis4 e4 e4 
        d2 d4. d8 
        cis4( e4 fis8[ e8] d4) 
        cis8[ e8] eis4 fis4 e4 
        dis8[ e8] fis4 e4 e4 
        fis8([ e8] dis4) e4. d8 
        cis4( d4 e8[ fis8] g4) 
        fis4 g4 a4 b4 
        ais4 fis4 fis4 fis4 
        fis4 g4 fis4 fis4 
        e4 fis4 e4 d4 
        cis8[ e8] eis4 fis4 e4 
        d8[ e8] fis4 e4 e4 
        d2 d4. d8 
        cis2. r4 
        d2 d8[ fis8 d8] d8 
        cis2. r4 
      }
    >>
  }
  
  tenorMelodie = \relative c' {
    <<
      % { \meta }
      %\tenorArt
      %the actual tune
      %\clef "treble_8"
      {
	cis4. b8 a4 a4 
        fis4 b4 b4 gis4 
        a2 b4. b8 
        a2.( gis4) 
        a8[ cis8] b4 a4 a4 
        fis4 b4 b4 gis4 
        b2 b8[ d8 cis8] b8 
        a4( b4 cis8[ d8] e4) 
        d4 a4 d4 d4 
        e4 cis4 b4 ais4 
        b4 ais4 b4 b4 
        a4 d4 cis4 b4 
        a8[ cis8] b4 a4 a4 
        fis4 b4 b4 gis4 
        a2 b4. b8 
        a2. r4 
        a4( b4) b8[ d8 cis8] b8 
        a2.\fermata r4 
      }
    >>
  }

  bassMelodie = \relative c {
    <<
      % { \meta }
      %\bassArt
      %the actual tune
      \clef bass
      {
        \autoBeamOff
        \repeat volta 2 {
          a4 cis4 d4 cis4 
          b4 dis4 e4 e4 
          d4( cis4) b4 e4 
          a,4( cis4 d4 e4) 
          a,4 cis4 d4 cis4 
          b8[ cis8] dis4 e4 e4 
          dis8([ cis8] b4) e4 e4 
          a,2.( cis4) 
          d4 e4 fis4 g4 
          fis4 ais,4 b4 cis4 
          b4 cis4 d4 dis4 
          e2 e2 
          a,4 cis4 d4 cis4 
          b8[ cis8] dis4 e4 e4 
        } \alternative {
          {
            d4( cis4) b4 e4 a,2. r4 
          }
          {
            d8( cis8 b4) e4 e4 
            <e a,>2. r4 
          }
        }
        \bar "|." 
      }
    >>
  }