blob: 7a8b0bc65637eb481a8177cc923b3ffb26707ea7 (
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
|
% vim: nu
\version "2.12.1"
\include "stimmen.ly"
\include "texte.ly"
\header {
title = \markup \center-align {"Evening Rise" " " " "}
composer = "Satz: Meinhard Ansohn"
}
#(set-global-staff-size 17)
\paper {
ragged-last-bottom = ##f
system-count = 2
top-margin = 15\mm
bottom-margin = 20\mm
left-margin = 32\mm
line-width = 147\mm
head-separation = 6\mm
foot-separation = 15\mm
after-title-space = 10\mm
}
%\midi {
%\tempo 4=72
%}
\layout {
indent = #0
\context {
% a little smaller so lyrics can be closer to the staff
\Staff
\override VerticalAxisGroup #'minimum-Y-extent = #'(-3.5 . 3.5)
}
}
\score {
%\simultaneous
\new ChoirStaff <<
\new Staff = oberstimme
<< \set Staff.instrumentName = #"Sopran I (6.) "
\new Voice = "xtras" { s1*4 s1*4 \bar "|." }
\new Voice = "soprane" { \global \oberMusic }
\lyricsto soprane \oberWords
>>
\new Staff = melodie
<< \set Staff.instrumentName = #"Sopran II (1.) "
\new Voice = "sopraneTwo" { \global \melMusic }
\lyricsto sopraneTwo \melWords
>>
\new Staff = altEins
<< \set Staff.instrumentName = #"Alt I (3.) "
\new Voice = "alti" { \global \altAM }
\lyricsto alti \altAW
>>
\new Staff = altZwei
<< \set Staff.instrumentName = #"Alt II (2.) "
\new Voice = "altiTwo" { \global \altBM }
\lyricsto altiTwo \altBW
>>
\new Staff = tenor
<< \set Staff.instrumentName = #"Tenor (5.) "
\new Voice = "tenoere" { \global \tenorMusic }
\lyricsto tenoere \tenorWords
>>
\new Staff = bass
<< \set Staff.instrumentName = #"Baß (4.) "
\new Voice = "baesse" { \global \bassMusic }
\lyricsto baesse \bassWords
>>
>>
% \midi{
% \context{
% \Score
% tempoWholesPerMinute = #(ly:make-moment 72 4)
% }
% %\tempo 4=72
% }
}
|