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

51 lines
698 B
Plaintext

violinMusic = {
\meterAndTempo
\clef "treble"
\key f \major
\stub
}
celloMusic = {
\meterAndTempo
\clef "bass"
\key f \major
\stub
}
guitarMusic = {
\meterAndTempo
\clef "treble"
\key f \major
\stub
}
staffViolin = \new Staff \with {
instrumentName = "Viool"
shortInstrumentName = "Vln."
midiInstrument = "Violin"
} \violinMusic
staffCello = \new Staff \with {
instrumentName = "Cello"
shortInstrumentName = "Vcl."
midiInstrument = "Cello"
} \celloMusic
staffGuitar = \new Staff \with {
instrumentName = "Gitaar"
shortInstrumentName = "Gtr."
midiInstrument = "Guitar"
} \celloMusic
staffgroupStrings = \new StaffGroup <<
\staffViolin
\staffCello
\staffGuitar
>>