welkom/parts-strings.ly
2020-10-04 20:22:18 +02:00

79 lines
1.2 KiB
Text

violinMusic = {
\meterAndTempo
\clef "treble"
\key b \minor
\stub
}
celloVerse = \fixed c {
b,1 | a, | d | e |
b,1 | a, | fs | a |
}
celloChorusI = \fixed c {
b,1 | d | <d a> | <cs a> |
<b, g>1 | <d fs> | <d a> | <cs a> |
<fs b> | R1 |
}
celloChorusII = \relative c {
b8 d4 d8 fs4 a, | g2. r4 |
a8 d r8 d fs4 d | cs2. r4 |
b'8 d,4 d8 d4 fs, | g2. r4 |
fs2 fs4 g | a2. r4 |
}
celloChorusIII = \relative c {
b8 d4 d8 fs4 a, | g2. r4 |
a8 d r8 d fs4 d | cs2. r4 |
b'8 d,4 d8 d4 fs, | g2. r4 |
fs2 fs4 g | a1 |
}
celloMusic = {
\meterAndTempo
\clef "bass"
\key b \minor
\fixed c { <b, fs>1 | <cs fs> | <d fs> | e2. d8 cs } |
\celloVerse
\celloChorusI % Drop already included
R1*3 % verse
\fixed c { r2. b,8 a, | b,4 r2. | }
R1*3
\celloChorusII % bare chorus
R1*8 % bridge
R1*8 % chorus
\celloChorusIII
\fixed c { b,1 }
\bar "|."
}
guitarVerse = \chordmode {
\repeat unfold 2 {
b,1:m | a,:9 | g, | a, |
}
}
guitarChorus = \chordmode {
\repeat unfold 2 {
b,:m | g, | d, | a, |
}
}
guitarMusic = {
\meterAndTempo
\key b \minor
R1*4
\guitarVerse
\guitarChorus
R1*2
\guitarVerse
R1*8 % bare chorus
R1*8 % bridge
\guitarChorus
\guitarChorus
R1
\bar "|."
}