blob: 2ec4b14e9fc6bf2b8f7c013155c99ba086140589 (
about) (
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
35
36
37
38
39
40
41
42
43
|
%\version "2.19.22"
\include "staff-tkit.ly"
make-pianostaff =
#(define-music-function () ()
(if (not PianoRHMidiInstrument)
(set! PianoRHMidiInstrument
(if PianoMidiInstrument
PianoMidiInstrument
"acoustic grand")))
(if (not PianoLHMidiInstrument)
(set! PianoLHMidiInstrument
(if PianoMidiInstrument
PianoMidiInstrument
"acoustic grand")))
(if (or
PianoRHMusic
PianoLHMusic)
#{
\new PianoStaff = "PianoStaff"
\with {
instrumentName = \markup \smallCaps
#(if PianoInstrumentName
PianoInstrumentName
"Piano" )
shortInstrumentName = \markup \smallCaps
#(if PianoShortInstrumentName
PianoShortInstrumentName
"")
}
<<
\make-one-voice-staff ##f "PianoRH" "treble" ""
#(if PianoDynamics
#{ \new Dynamics = "PianoDynamics" { #PianoDynamics } #} )
\make-one-voice-staff ##f "PianoLH" "bass" ""
>>
#}
(make-music 'SequentialMusic 'void #t)))
|