summaryrefslogtreecommitdiff
path: root/In_geselliger_Runde/In_geselliger_Runde.ly
blob: 7895b6df867ffbe1e7edbeb6b85f3add37145dea (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
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)

#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
#(set-default-paper-size "kindle")

\pointAndClickOff

\header {
  title = "In geselliger Runde"
  tagline = ""
}
\paper {
  top-margin = 5
}

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = "textInterS" {}
    \new Staff <<
      \pausen
      \new Voice = "sopran1"   { \global \voiceOne \sopranIMelodie }
      \new Voice = "sopran2"   { \global \voiceTwo \sopranIIMelodie }
    >>
    \new Lyrics = "textEinsS" {}
    \new Lyrics = "textZweiS" {}
    \new Lyrics = "textDreiS" {}
    \new Staff = "alt" <<
      \new Voice = "alt"       { \global \altMelodie }
    >>
    \new Lyrics = "textEinsA" {}
    \new Lyrics = "textZweiA" {}
    \new Lyrics = "textDreiA" {}
    \new Staff = "maenner" <<
      \pausen
      \new Voice = "maenner"   { \global \clef "bass" \maennerMelodie }
    >>
    \new Lyrics = "textEinsM" {}
    \new Lyrics = "textZweiM" {}
    \new Lyrics = "textDreiM" {}
    \context Lyrics = "textInterS" \lyricsto "sopran1" \textInterSopranI
    \context Lyrics = "textEinsS" \lyricsto "sopran1" \textISopran
    \context Lyrics = "textZweiS" \lyricsto "sopran1" \textIISopran
    \context Lyrics = "textZweiS" \lyricsto "sopran2" \textInterSopranII
    \context Lyrics = "textDreiS" \lyricsto "sopran1" \textIIISopran
    \context Lyrics = "textEinsA" \lyricsto "alt" \textIAlt
    \context Lyrics = "textZweiA" \lyricsto "alt" \textIIAlt
    \context Lyrics = "textZweiA" \lyricsto "alt" \textInterAlt
    \context Lyrics = "textDreiA" \lyricsto "alt" \textIIIAlt
    \context Lyrics = "textEinsM" \lyricsto "maenner" \textIMaenner
    \context Lyrics = "textZweiM" \lyricsto "maenner" \textIIMaenner
    \context Lyrics = "textZweiM" \lyricsto "maenner" \textInterMaenner
    \context Lyrics = "textDreiM" \lyricsto "maenner" \textIIIMaenner
  >>
  \layout {
    indent = #0
  }
}