46 lines
595 B
Text
46 lines
595 B
Text
melodicaMusic = {
|
|
\meterAndTempo
|
|
\clef "treble"
|
|
\key b \minor
|
|
|
|
\fixed f' {
|
|
\stub
|
|
}
|
|
}
|
|
|
|
pianoRHMusic = {
|
|
\meterAndTempo
|
|
\clef "treble"
|
|
\key b \minor
|
|
|
|
\fixed f' {
|
|
\stub
|
|
}
|
|
}
|
|
|
|
pianoLHMusic = {
|
|
\meterAndTempo
|
|
\clef "bass"
|
|
\key b \minor
|
|
|
|
\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
|
|
>>
|