blob: 68dda4c469b7247267ccd5b8ada240d6eb33786b (
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
|
% vim: encoding=utf8 nu
\version "2.12.1"
\include "stimmen.ly"
\include "texte.ly"
\header {
title = "Locus iste"
%subtitle = "(Traditional)"
composer = "Anton Bruckner, 1824-1896"
}
#(set-global-staff-size 16)
\paper {
ragged-last-bottom = ##f
%system-count = 4
page-count = 2
line-width = 182\mm
%between-system-space = 1\mm
%after-title-space = 0\mm
foot-separation = 15\mm
top-margin = 20\mm
bottom-margin = 25\mm
}
\midi {
}
\layout {
indent = #0
\context {
% a little smaller so lyrics can be closer to the staff
\Staff
\override VerticalAxisGroup #'minimum-Y-extent = #'(-4 . 4)
}
\context {
\Voice
\consists Ambitus_engraver
}
}
\score {
%\simultaneous
\new ChoirStaff <<
\new Staff = Sopran <<
\new Voice = "meta"
{
\dynamicUp
s1*3 s1 %\>
s1*2 \break
s1 %\!
s1% \break
s1*5 \break
s1*7 \pageBreak
s1*4 s1*2 s1*3 \break
s1*4 s1*4 \break
s1*6 s1*5 \bar "|."
}
\new Voice = "soprane" { \global \sopMusic }
\lyricsto soprane \oberWords
>>
\new Staff = Alt <<
\new Voice = "alti" { \global \altMusic }
\lyricsto alti \oberWords
>>
\new Staff = Tenor <<
\new Voice = "tenoere" { \global \tenorMusic }
\lyricsto tenoere \tenorWords
>>
\new Staff = Bass <<
\new Voice = "baesse" { \global \bassMusic }
\lyricsto baesse \bassWords
>>
>>
}
|