welkom/parts-strings.ly

88 lines
1.1 KiB
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
2020-09-21 18:03:46 +02:00
\clef "bass_8"
2020-09-20 00:13:28 +02:00
\key b \minor
2020-09-19 16:46:15 +02:00
2020-09-21 18:03:46 +02:00
\repeat volta 2 {
\fixed c, {
b1 | e | d | a |
b1 | e | d | a |
}
\relative c, {
b8 d4 d8 fs4 a,
| % 2
g2. r4
| % 3
a8 d r8 d fs4 d
| % 4
cs4 r2. |
b'8 d,4 d8 d4 fs,
| % 2
g2. r4
| % 3
fs2 fs4 g
| % 4
a2. r4
|
}
}
2020-09-19 16:46:15 +02:00
}
guitarMusic = {
\meterAndTempo
2020-09-20 00:13:28 +02:00
\key b \minor
2020-09-21 18:03:46 +02:00
\repeat volta 2 {
2020-09-20 00:13:28 +02:00
\chordmode {
\repeat unfold 2 {
b,1:m | a,:9 | g, | a, |
}
\repeat unfold 2 {
b,:m | g, | d, | a, |
}
}
2020-09-21 18:03:46 +02:00
}
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
>>