blob: 37bc1fccb54d3baae0c2fff34faab11fbcd79a98 (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8
\version "2.12.1"
\include "stimmen.ly"
\include "texte.ly"
\header {
title = "Abendsegen"
%title = \markup { "Abendsegen" }
subtitle = \markup { \huge "(deutsche Textfassung: Th. Cursch-Bühren)" }
composer = \markup { \column { \right-align \huge "Antonín Dvořak" \right-align \normalsize "Op. 29 Nr.1" } }
%opus = "Op. 29 Nr. 1"
%text-translator = ""
meinOddFooter = \markup {
\center-align {
"viel Spaß beim Singen" "und besucht uns unter"
\with-url #"www.studentenchor.de" \line {
\bold "www.studentenchor.de"
}
}
}
meinEndFooter =
\markup {
\with-url #"www.studentenchor.de" \line {
\bold "www.studentenchor.de"
}
}
}
#(set-global-staff-size 10)
#(set-default-paper-size "a4" 'landscape)
#(ly:set-option 'point-and-click #f)
\paper {
%<+weitere Einstellungen+>
after-title-space = 12\mm
page-top-space = 10\mm
bottom-margin = 17\mm
top-margin = 12\mm
line-width = 260\mm
system-count = 5
foot-separation = 15\mm
head-separation = 0\mm
}
\midi {
%\tempo 4 = <+bpm+>
}
\layout {
indent = #0
\context {
\Staff
\override VerticalAxisGroup #'minimum-Y-extent = #'(-2 . 2)
}
\context {
\Voice
\override TextScript #'padding = #2.0
\override DynamicLineSpanner #'staff-padding = #1
%\override DynamicText #'avoid-slur = #'outside
\override DynamicLineSpanner #'padding = #1.0
\override DynamicTextSpanner #'staff-padding = #4
}
}
\score {
\new ChoirStaff <<
\new Staff = sopran <<
\new Voice = "meta" { \meta }
\new Voice = "soprane" { \global \sopranMelodie }
\lyricsto soprane \sopranText
>>
\new Staff = alt <<
\new Voice = "meta" { \meta }
\new Voice = "alti" { \global \altMelodie }
\lyricsto alti \altText
>>
\new Staff = tenor <<
\new Voice = "meta" { \meta }
\new Voice = "tenoere" { \global \tenorMelodie }
\lyricsto tenoere \tenorText
>>
\new Staff = bass <<
\new Voice = "meta" { \meta }
\new Voice = "baesse" { \global \bassMelodie }
\lyricsto baesse \bassText
>>
>>
}
|