summaryrefslogtreecommitdiff
path: root/Komm_Heilger_Geist/stimmen.ly
blob: 3818c887816b0059bc092e0910d2f98c2f6432df (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
Praes = {
  \time 4/4
  \key g \minor
  \autoBeamOff
}

sopranMelodie = \relative g' {
  \Praes
  \repeat volta 2 {
    \repeat unfold 2 {
      g4 g8 f g2 |
    }
    g4 a8 b c4 b8 a |
    b4 a g2 |
  }
  \context Voice = verse {
    \autoBeamOff
    \repeat unfold 2 {
      g4 d' d d |
      c c b8[ a] g4 |
      a b c b8[ a] |
      b4
    }
    \alternative {
      {
        c d2
      }
      {
        a4 g2
      }
    } \bar "||"
  }
}

altMelodie = \relative c' {
  \Praes
  \context Voice = refrain {
    \Praes \repeat volta 2 {
      \repeat unfold 2 {
        d2 g4 f |
      }
      d2 f |
      g4 f d2 |
    }
  }
  \repeat unfold 2 {
    d4 g g g |
    g f d d |
    f f f f |
    g
  }
  \alternative {
    {
      g fis2
    }
    {
      f4 d2
    }
  } \bar "||"
}

tenorMelodie = \relative c' {
  \Praes
  \repeat volta 2 {
    \repeat unfold 2 {
      b2 d4 c |
    }
    b2 a |
    g4 <<
      {
        c h2 |
      }
      \new Voice { \voiceThree
        a4 b2 |
      }
    >>
  }
  \repeat unfold 2 {
    g4 b b b |
    b a b b |
    c b a c |
    g
  }
  \alternative {
    {
      g a2
    }
    {
      a4 h2
    }
  } \bar "||"
}

bassMelodie = \relative c' {
  \Praes
  \repeat volta 2 {
    \repeat unfold 2 {
      g2 b4 a |
    }
    g2 f |
    es4 f g2 |
  }
  \repeat unfold 2 {
    g4 g f f |
    es f g g |
    f g f f |
    es
  }
  \alternative {
    {
      es d2
    }
    {
      f4 g2
    }
  } \bar "||"
}