summaryrefslogtreecommitdiff
path: root/Jerusalem/parts/IIstimmen.ly
blob: 84311d021cc416d83f56fbf95bf57ff32ae53c6b (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
  % global defs % {{{

  punktBoegen = {
    \set melismaBusyProperties = #'()
    \slurDashed
    \tieDashed
  }

  strichBoegen = {
    \set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy)
    \slurSolid
    \tieSolid
  }

  IIGlobalChords = {
    \germanChords
    \set chordNameLowercaseMinor = ##t
  }

  IIGlobal = {
    %\override Staff.TimeSignature #'style = #'()
    \set Score.skipBars = ##t
    \set Score.soloText = #""
    \set Score.soloIIText = #""
    \set Score.aDueText = #""
    \autoBeamOff
  }

  IIJerusalemRufGlobal = {
    \IGlobal
    \key a \major
    \time 4/4
    \partial 4
  }

  % }}}

% Die Stimmen

  % Jerusalem-Ruf % {{{

  IIJerusalemRufAkkorde = \chordmode {
    \IIJerusalemRufGlobal
    \IIGlobalChords
    \repeat volta 2 {
      s4 |
      a2 h:m7 |
      cis1:m |
      d2 fis:m |
      e1 |
      d2:6 e:7 |
      fis2.:m h4:m7 |
      d2:6 e |
      a2.
    }
  }

  IIJerusalemRufOberstimme = \relative e' {
    \IIJerusalemRufGlobal
    \repeat volta 2 {
      r4 |
      r2. e4 |
      e' d8 cis h4 e, |
      fis2 r4 e |
      e' d8 cis h4 e, |
      fis2 r4 e |
      e' d8 cis h4 h |
      d4. d8 d4. cis8 |
      cis2.
    }
  }

  IIJerusalemRufSopran = \relative e' {
    \IIJerusalemRufGlobal
    \repeat volta 2 {
      e4 |
      a2 a |
      gis2. e4 |
      a2 a |
      h2. h4 |
      d2 d |
      cis2. h4 |
      a2 fis |
      a2.
    }
  }

  IIJerusalemRufAlt = \relative e' {
    \IIJerusalemRufGlobal
    \repeat volta 2 {
      e4 |
      cis2 d |
      cis2. cis4 |
      d2 cis |
      e2. gis4 |
      fis2 gis |
      fis2. d4 |
      d2 d |
      cis2.
    }
  }

  IIJerusalemRufTenor = \relative e {
    \IIJerusalemRufGlobal
    \repeat volta 2 {
      e4 |
      a2 fis |
      e2. gis4 |
      fis2 fis |
      gis2. h4 |
      h2 h |
      a2. a4 |
      h2 h |
      a2.
    }
  }

  IIJerusalemRufBass = \relative e {
    \IIJerusalemRufGlobal
    \repeat volta 2 {
      e4 |
      a,2 h |
      cis2. cis4 |
      d 2 fis |
      e2. e4 |
      d2 e |
      fis2. h,4 |
      e2 e |
      a,2.
    }
  }
  % }}}