welkom/parts-strings.ly

60 lines
844 B
Text

violinMusic = {
\meterAndTempo
\clef "treble"
\key b \minor
\stub
}
celloMusic = {
\meterAndTempo
\clef "bass"
\key b \minor
\stub
}
guitarMusic = {
\meterAndTempo
\key b \minor
\chordmode {
\repeat unfold 2 {
b,1:m | a,:9 | g, | a, |
}
\repeat unfold 2 {
b,:m | g, | d, | a, |
}
}
}
staffViolin = \new Staff \with {
instrumentName = "Viool"
shortInstrumentName = "Vln."
midiInstrument = "Violin"
} \violinMusic
staffCello = \new Staff \with {
instrumentName = "Cello"
shortInstrumentName = "Vcl."
midiInstrument = "Cello"
} \celloMusic
chordNames = \new ChordNames {
\guitarMusic
}
staffGuitar = \new Staff \with {
instrumentName = "Gitaar"
shortInstrumentName = "Gtr."
midiInstrument = "Guitar"
} \guitarMusic
staffgroupStrings = \new StaffGroup <<
\staffViolin
\staffCello
\staffGuitar
>>