blob: 890b55a81ccd7c7ffc61ea288a2a1fbbaaf56ced (
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
|
% vim: encoding=utf8 nu
\version "2.12.1"
\include "stimmen.ly"
\header {
title = "Tebje Pajom"
subtitle = "Altrussischer Kirchengesang"
composer = "Melodie: Dimitri Bortnianski"
arranger = \markup {
\column \right-align {
"Satz: Hans-Joachim Rolf" "[Deutscher Text: Klaus Siefert]"
}
}
}
#(set-global-staff-size 18)
\paper {
ragged-last-bottom = ##f
system-count = 4
top-margin = 15\mm
bottom-margin = 10\mm
line-width = 175\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 . 4.5)
}
}
\score {
%\simultaneous
\new ChoirStaff <<
\new Staff = Frauen <<
%\new Staff = Sopran <<
\new Voice = "meta" \metaVoice
\new Voice = "soprane" { \voiceOne \global \sopMusic }
\lyricsto soprane \text
%>>
%\new Staff = Alt <<
\new Voice = "alti" { \voiceTwo \global \altMusic }
%\lyricsto alti \text
>>
\new Staff = Maenner <<
\new Voice = "meta" { \clef bass \metaVoice }
%\new Staff = Tenor <<
\new Voice = "tenoere" { \voiceOne \global \tenorMusic }
\lyricsto tenoere \text
%>>
%\new Staff = Bass <<
\new Voice = "baesse" { \voiceTwo \global \bassMusic }
%\lyricsto baesse \text
>>
>>
}
|