welkom/parts-strings.ly

51 lines
698 B
Text
Raw Normal View History

2020-09-19 16:46:15 +02:00
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
>>