blob: e5ff2e79004eebf6b5d2654662789b67255255a2 (
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
|
\markup {
\column {
\fill-line {\bold\fontsize #3 4}
\vspace #0.5
\line{(3-4-5) (1) Special exercise for the 3\super{rd}, 4\super{th} and 5\super{th} fingers of the hand.}
\vspace #0.5
}
}
\score{
\new PianoStaff <<
\override PianoStaff.InstrumentName #'self-alignment-X = #RIGHT
\set PianoStaff.instrumentName = \markup{\right-align\bold\fontsize #3 4.}
\new Staff = "up" {
\clef treble
\time 2/4
\new Voice
\include "dir/rh4.ily"
}
\new Staff = "down" {
\clef bass
\new Voice
\include "dir/lh4.ily"
}
>>
}
|