blob: b254945b7726006c0eebd5d43407fc4cce49ab85 (
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
|
\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 "a5")
\pointAndClickOff
\header {
title = "Sonnenkäferlied"
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
>>
\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
}
% \hspace #0.1 % adds horizontal spacing between columns;
% \column {
% \textV
% \combine \null \vspace #0.1 % adds vertical spacing between verses
% \textVI
% }
\hspace #0.1 % gives some extra space on the right margin;
% can be removed if page space is tight
}
}
|