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

%spezifisch%

\pointAndClickOff

\header {
  tagline = ""
}
\paper {
  top-margin = 5
  print-all-headers = ##t
}

\score {
  \header {
    title = "Schalom"
    composer = "Musik: Reinhard Horn"
    arranger = "Satz: Thomas Hoffmann"
    subtitle = ##f
    poet = "Text: Christa Peikert-Flaspöhler"
  }
  <<
    \new ChoirStaff <<
      \set Score.skipBars = ##t
      \new Staff <<
        \new Voice = frauen  { \global \oneVoice \pausen }
        \new Voice = sopran  { \global \voiceOne \sopranMelodie }
        \new Voice = alt     { \global \voiceTwo \altMelodie }
      >>
      \new Lyrics = "textI"   {}
      \new Lyrics = "textII"  {}
      \new Lyrics = "textIII" {}
      \new Staff <<
        \new Voice = maenner { \clef "bass" \global \oneVoice \pausen }
        \new Voice = tenor   { \clef "bass" \global \voiceOne \tenorMelodie }
        \new Voice = bass    { \clef "bass" \global \voiceTwo \bassMelodie }
      >>
      \context Lyrics = "textI"   \lyricsto sopran { \textI }
      \context Lyrics = "textII"  \lyricsto sopran { \textII }
      \context Lyrics = "textIII" \lyricsto sopran { \textIII }
    >>
    \new ChoirStaff <<
      \new Staff <<
        \new Voice = bfrauen  { \global \oneVoice \pausen }
        \new Voice = bSopran  { \global \voiceOne \begleitSopranMelodie }
        \new Voice = bAlt     { \global \voiceTwo \begleitAltMelodie }
      >>
      \new Staff <<
        \new Voice = bMaenner { \clef "bass" \global \oneVoice \pausen }
        \new Voice = bTenor   { \clef "bass" \global \voiceOne \begleitTenorMelodie }
        \new Voice = bBass    { \clef "bass" \global \voiceTwo \begleitBassMelodie }
      >>
    >>
  >>
  \layout {
    indent = #0
  }
}