blob: 803740af85e43154286334277bb2ccf12ecb3c23 (
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
|
\include "includes/header.ly"
\include "includes/definitions.ly"
\include "includes/paper.ly"
#(set-global-staff-size 18)
\paper {
ragged-last-bottom = ##f
}
\header {
%title = ""
}
\include "largo/keyboard.ly"
\bookpart {
\paper {
page-count = #1
system-count = #7
}
\score {
\new PianoStaff <<
\new Staff = "upper" \upper
\new Staff = "lower" \lower
>>
}
}
|