summaryrefslogtreecommitdiff
path: root/Kasimirs_Liederbuch/Es_fuehrt_ueber_den_Main/Es_fuehrt_ueber_den_Main.ly
blob: c19960e12735a3e5753d0fbf5b002a07d6023e54 (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
\include "deutsch.ly"
\include "stimmen.ly"
\include "texte.ly"

#(set-default-paper-size "a5")

\pointAndClickOff

\header {
  title = "Es führt über den Main"
  tagline = ""
}
\paper {
  top-margin = 5
}

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new ChordNames              { \global \akkorde }
    \new Staff {
      \new Voice = "Melodie"   { \global \melodie }
    }
    \new Lyrics \lyricsto "Melodie" \textI
    \new Staff {
      \new Voice = "Bass"      { \clef "bass" \global \bassMelodie }
    }
  >>
  \layout {
    indent = #0
  }
}

\markup {
  \fill-line {
    \hspace #0.1 % moves the column off the left margin;
    % can be removed if space on the page is tight
    \column {
      \textII
      \combine \null \vspace #0.1 % adds vertical spacing between verses
      \textIII
      \combine \null \vspace #0.1 % adds vertical spacing between verses
      \textIV
      \combine \null \vspace #0.1 % adds vertical spacing between verses
      \textV
    }
    \hspace #0.1 % adds horizontal spacing between columns;
    \column {
      \textVI
      \combine \null \vspace #0.1 % adds vertical spacing between verses
      \textVII
      \combine \null \vspace #0.1 % adds vertical spacing between verses
      \textVIII
    }
  \hspace #0.1 % gives some extra space on the right margin;
  % can be removed if page space is tight
  }
}