blob: 669e97c49d940a2f78432e4c4a164c40de56190b (
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
|
\include "includes/header.ly"
\include "includes/definitions.ly"
\include "includes/paper.ly"
#(set-global-staff-size 15)
\paper {
ragged-last-bottom = ##f
}
\include "largo/all.ly"
\bookpart {
\paper {
page-count = #3
system-count = #9
systems-per-page = #3
}
\score {
\new StaffGroup <<
\new StaffGroup \with {
systemStartDelimiter = #'SystemStartBrace
} <<
\new Staff {\largo \time 4/4 \key aes \major \relative c'' \violini}
\new Staff {\largo \time 4/4 \key aes \major \relative c'' \violinii}
>>
\new Staff {\largo \time 4/4 \key aes \major \clef alto \relative c' \viola}
\new Staff {\largo \time 4/4 \key aes \major \clef bass \relative c' \continuo}
\new PianoStaff <<
\new Staff = "upper" \upper
\new Staff = "lower" \lower
>>
>>
}
}
|