welkom/parts-strings.ly

61 lines
844 B
Text
Raw Normal View History

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