summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/blessing/blessing.ly
blob: 58fa1aa4765f8dfd53907a5fe171a01c2e7d1d71 (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
% vim: nu

\version "2.12.1"
\include "stimmen.ly"
\include "texte.ly"
     
  \header {
    title = "An Irish Blessing"
    subtitle = "(Traditional)"
    composer = "James E. Moore"
  }
#(set-global-staff-size 17)

  \paper {
    ragged-last-bottom = ##f
    system-count = 4
    line-width = 180\mm
    between-system-space = 1\mm
    after-title-space = 0\mm
    foot-separation = 5\mm
    top-separation = 0\mm
    top-margin = 0\mm
    bottom-margin = 10\mm
  }

  \midi {
  }

  \layout {
    indent = #0
    \context {
      % a little smaller so lyrics can be closer to the staff
      \Staff
      \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 2)
    }
  }

  \score {
    \unfoldRepeats
    %\simultaneous
    \new ChoirStaff <<
      \new Staff = Frauen <<
	\new Voice = "meta"
	{ s1*8 \repeat volta 2 { s1*2 s1*2 } \alternative {{s1} {s1} {}} \bar "|." }
	\new Voice = "soprane" { \voiceOne \global \sopranMelodie }
	%\lyricsto soprane \sopranText
      %>>
      %\new Staff = Alt <<
	\new Voice = "alti" { \voiceTwo \global \altMelodie }
	\lyricsto alti \altText
      >>
      \new Staff = Tenor <<
	\new Voice = "tenoere" { \global \tenorMelodie }
	\lyricsto tenoere \tenorText
      >>
      \new Staff = Bass <<
	\new Voice = "baesse" { \global \bassMelodie }
	\lyricsto baesse \bassText
      >>
    >>
    \midi {
    }
  }