blob: a2dc720b5a17c35e16ad66eddc097ff881cdbf67 (
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
|
% vim: encoding=utf8 nu
\version "2.12.2"
\include "stimmen.ly"
\include "texte.ly"
\header {
title = "Jetzt ist Sommer"
%subtitle = "(Traditional)"
composer = "Stefan Kalmer"
}
#(set-global-staff-size 14)
\paper {
ragged-last-bottom = ##f
% system-count = 5
% page-count = 1
line-width = 182\mm
%between-system-space = 1\mm
%after-title-space = 0\mm
foot-separation = 15\mm
top-margin = 10\mm
bottom-margin = 25\mm
tagline=""
}
\midi {
}
\layout {
indent = #0
\context {
% a little smaller so lyrics can be closer to the staff
\Staff
\override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
}
\context {
% \Voice
% \consists Ambitus_engraver
}
}
\score {
\unfoldRepeats
%\simultaneous
\new ChoirStaff <<
% \new Lyrics = sop {s1}
% \new Staff = frauen <<
% \new Voice = "fPausen" { \frauenPausen }
% \new Voice = "soprane" { \global \voiceOne \sopMusic }
% \new Voice = "alti" { \global \voiceTwo \altMusic }
% >>
% \new Lyrics = "alt" {s1}
% \new Lyrics = "ten" {s1}
\new Staff = maenner <<
\new Voice = "mPausen" { \maennerPausen }
% \new Voice = "tenoere" { \global \voiceOne \tenorMusic }
\new Voice = "baesse" { \global <<\bassArt \bassMusic>> }
>>
\new Lyrics = bass {s1}
% \context Lyrics = sop \lyricsto soprane \oberWords
% \context Lyrics = alt \lyricsto alti \oberWords
% \context Lyrics = ten \lyricsto tenoere \tenorWords
\context Lyrics = bass \lyricsto baesse \bassWords
>>
\midi {
\context{
\Score
tempoWholesPerMinute = #(ly:make-moment 130 4)
}
}
}
|