summaryrefslogtreecommitdiff
path: root/Das_ist_meine_Freude/Das_ist_meine_Freude.ly
blob: 418bff9ece66c4cc12e3d7cdf750db1263e54d09 (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
\include "deutsch.ly"
\include "stimmen.ly"
\include "texte.ly"

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

\pointAndClickOff

\header {
  title = "Das ist meine Freude"
  tagline = ""
}
\paper {
  top-margin = 5
}

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = "textInterS" {}
    \new Staff <<
      \new Voice = "sopran"    { \global \sopranMelodie }
    >>
    \new Lyrics = "textS" {}
    \new Staff = "alt" <<
      \new Voice = "alt"       { \global \altMelodie }
    >>
    \new Lyrics = "textA" {}
    \new Staff = "maenner" <<
      \new Voice = "maenner"   { \global \clef "bass" \maennerMelodie }
    >>
    \new Lyrics = "textM" {}
    \context Lyrics = "textS" \lyricsto "sopran" \textSopran
    \context Lyrics = "textA" \lyricsto "alt" \textAlt
    \context Lyrics = "textM" \lyricsto "maenner" \textMaenner
  >>
  \layout {
    indent = #0
  }
}