blob: ace148934d1fcfbd55b3458fca31ed111b83fc8e (
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
|
\include "includes/header.ly"
\include "includes/definitions.ly"
\include "largo/all.ly"
\bookpart {
\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
>>
>>
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 40 4)
}
}
}
}
|