Sha256: 8cc107a4fbfd8ef36207980b53585b5391298cbf44db572b41c1dfc24818ce86
Contents?: true
Size: 1.85 KB
Versions: 5
Compression:
Stored size: 1.85 KB
Contents
%%%% Piano template. %%%% This file is part of LilyPond, the GNU music typesetter. %%%% %%%% Copyright (C) 2015--2022 Trevor Daniels <t.daniels@treda.co.uk> %%%% %%%% LilyPond is free software: you can redistribute it and/or modify %%%% it under the terms of the GNU General Public License as published by %%%% the Free Software Foundation, either version 3 of the License, or %%%% (at your option) any later version. %%%% %%%% LilyPond is distributed in the hope that it will be useful, %%%% but WITHOUT ANY WARRANTY; without even the implied warranty of %%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the %%%% GNU General Public License for more details. %%%% %%%% You should have received a copy of the GNU General Public License %%%% along with LilyPond. If not, see <http://www.gnu.org/licenses/>. %\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)))
Version data entries
5 entries across 5 versions & 1 rubygems