blob: 45a4bcc2f46bc095ada819c09a859a3c9c017860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
\score{
\new PianoStaff <<
\override PianoStaff.InstrumentName #'self-alignment-X = #RIGHT
\set PianoStaff.instrumentName = \markup{\right-align\bold\fontsize #3 7.}
\new Staff = "up" {
\clef treble
\time 2/4
\new Voice
\include "dir/rh7.ily"
}
\new Staff = "down" {
\clef bass
\new Voice
\include "dir/lh7.ily"
}
>>
}
|