welkom/parts-keys.ly
2020-09-19 16:49:05 +02:00

47 lines
595 B
Plaintext

melodicaMusic = {
\meterAndTempo
\clef "treble"
\key f \major
\fixed f' {
\stub
}
}
pianoRHMusic = {
\meterAndTempo
\clef "treble"
\key f \major
\fixed f' {
\stub
}
}
pianoLHMusic = {
\meterAndTempo
\clef "bass"
\key f \major
\fixed f' {
\stub
}
}
staffMelodica = \new Staff \with {
instrumentName = "Melodica"
shortInstrumentName = "Mel."
midiInstrument = "Melodica"
} \melodicaMusic
staffPiano = \new PianoStaff \with {
instrumentName = "Piano"
shortInstrumentName = "P."
midiInstrument = "Grand"
} <<
\new Staff \pianoRHMusic
\new Staff \pianoLHMusic
>>