summaryrefslogtreecommitdiff
path: root/Selig_seid_ihr/stimmen.ly
diff options
context:
space:
mode:
Diffstat (limited to 'Selig_seid_ihr/stimmen.ly')
-rwxr-xr-xSelig_seid_ihr/stimmen.ly153
1 files changed, 153 insertions, 0 deletions
diff --git a/Selig_seid_ihr/stimmen.ly b/Selig_seid_ihr/stimmen.ly
new file mode 100755
index 0000000..2be4a2d
--- /dev/null
+++ b/Selig_seid_ihr/stimmen.ly
@@ -0,0 +1,153 @@
+
+global = {
+ \time 4/4
+ \key f \major
+}
+
+SopranA = \relative a' {
+ \repeat unfold 2 {
+ a2 g4 a |
+ f1 |
+ }
+ \alternative {
+ {
+ d4 f f g |
+ a1 |
+ }
+ {
+ d,4 f f e |
+ f1 |
+ }
+ }
+}
+SopranB = \relative g' {
+ \repeat unfold 2 {
+ g2 a4 b |
+ a1 |
+ }
+ \alternative {
+ {
+ b4 c d b |
+ g1 |
+ }
+ {
+ b4 a g f |
+ g1 |
+ }
+ }
+}
+
+AltA = \relative f' {
+ \repeat unfold 2 {
+ f2 e4 e |
+ d1 |
+ }
+ \alternative {
+ {
+ d4 d d e |
+ f1 |
+ }
+ {
+ d4 a c c |
+ c1 |
+ }
+ }
+}
+AltB = \relative e' {
+ \repeat unfold 2 {
+ e2 f4 g |
+ f1 |
+ }
+ \alternative {
+ {
+ f4 f f f |
+ e1 |
+ }
+ {
+ f4 f d d |
+ e1 |
+ }
+ }
+}
+
+TenorA = \relative c' {
+ \repeat unfold 2 {
+ c2 c4 a |
+ a1 |
+ }
+ \alternative {
+ {
+ b4 a c c |
+ c1 |
+ }
+ {
+ b4 f g g |
+ a1 |
+ }
+ }
+}
+TenorB = \relative c' {
+ \repeat unfold 2 {
+ c2 c4 c |
+ c1 |
+ }
+ \alternative {
+ {
+ d4 c b d |
+ c1 |
+ }
+ {
+ d4 c b a |
+ c1 |
+ }
+ }
+}
+
+BassA = \relative f {
+ \repeat unfold 2 {
+ f2 c4 cis |
+ d1 |
+ b4 d c c |
+ f1 |
+ }
+}
+BassB = \relative c {
+ \repeat unfold 2 {
+ c2 c4 c |
+ f1 |
+ }
+ \alternative {
+ {
+ b4 a g b |
+ c1 |
+ }
+ {
+ g,4 a b d |
+ c1 |
+ }
+ }
+}
+
+sopranMelodie = {
+ \global
+ \SopranA \bar "|."
+ \SopranB \bar "||"
+}
+
+altMelodie = {
+ \global
+ \AltA \bar "|."
+ \AltB \bar "||"
+}
+
+tenorMelodie = {
+ \global
+ \TenorA \bar "|."
+ \TenorB \bar "||"
+}
+
+bassMelodie = {
+ \global
+ \BassA \bar "|."
+ \BassB \bar "||"
+}