summaryrefslogtreecommitdiff
path: root/Jauchzet_dem_Herrn_alle_Welt/Jauchzet_dem_Herrn_alle_Welt.ly
blob: 1d321c3800c72492cd51e7828e24070f736d288b (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
\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 = "Jauchzet dem Herrn alle Welt"
  poet = "Text: Psalm 100"
  composer = "Felix Mendelssohn Bartholdy (1809-1847)"
  tagline = ""
}
\paper {
  top-margin = 5
}

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = textSopranI      { }
    \new Staff <<
      \new Voice = sopran   { \global \oneVoice \melodieSopran }
      \new Voice = sopranI  { \global \voiceOne \melodieSopranI }
      \new Voice = sopranII { \global \voiceTwo \melodieSopranII }
    >>
    \new Lyrics = textSopran       { }
    \new Staff <<
      \new Voice = alt      { \global \oneVoice \melodieAlt }
      \new Voice = altI     { \global \voiceOne \melodieAltI }
      \new Voice = altII    { \global \voiceTwo \melodieAltII }
    >>
    \new Lyrics = textAlt          { }
    \new Lyrics = textTenorI       { }
    \new Staff <<
      \new Voice = tenor    { \global \clef "G_8" \oneVoice \melodieTenor }
      \new Voice = tenorI   { \global \clef "G_8" \voiceOne \melodieTenorI }
      \new Voice = tenorII  { \global \clef "G_8" \voiceTwo \melodieTenorII }
    >>
    \new Lyrics = textTenor        { }
    \new Staff <<
      \new Voice = bass     { \global \clef "bass" \oneVoice \melodieBass }
      \new Voice = bassI    { \global \clef "bass" \voiceOne \melodieBassI }
      \new Voice = bassII   { \global \clef "bass" \voiceTwo \melodieBassII }
    >>
    \new Lyrics = textBass         { }

    \context Lyrics = textSopran   \lyricsto sopran   { \textSopran }
    \context Lyrics = textSopran   \lyricsto sopranII { \textSopranII }
    \context Lyrics = textSopranI  \lyricsto sopranI  { \textSopranI }
    \context Lyrics = textAlt      \lyricsto alt      { \textAlt }
    \context Lyrics = textAlt      \lyricsto altII    { \textAltII }
    \context Lyrics = textTenor    \lyricsto tenor    { \textTenor }
    \context Lyrics = textTenor    \lyricsto tenorII  { \textTenorII }
    \context Lyrics = textTenorI   \lyricsto tenorI   { \textTenorI }
    \context Lyrics = textBass     \lyricsto bass     { \textBass }
    \context Lyrics = textBass     \lyricsto bassII   { \textBassII }
  >>
  \layout {
    indent = #0
    \context {
      \Staff
      \RemoveEmptyStaves
      \override VerticalAxisGroup #'remove-first = ##t
    }
  }
}