66 lines
874 B
Text
66 lines
874 B
Text
violinMusic = {
|
||
\meterAndTempo
|
||
\clef "treble"
|
||
\key b \minor
|
||
|
||
\stub
|
||
}
|
||
|
||
|
||
celloVerse = \fixed c, {
|
||
b,1 | cs | d | cs |
|
||
b,1 | cs | d | cs |
|
||
}
|
||
celloChorusI = \fixed c, {
|
||
b,1 | fs | d | cs |
|
||
b,1 | fs | d | cs |
|
||
}
|
||
celloChorusII = \relative c, {
|
||
b8 d4 d8 fs4 a, | g2. r4 |
|
||
a8 d r8 d fs4 d | cs4 r2. |
|
||
|
||
b'8 d,4 d8 d4 fs, | g2. r4 |
|
||
fs2 fs4 g | a2. r4 |
|
||
}
|
||
celloMusic = {
|
||
\meterAndTempo
|
||
\clef "bass_8"
|
||
\key b \minor
|
||
|
||
\celloVerse
|
||
\celloChorusI
|
||
R1*2
|
||
R1*8 % verse
|
||
\celloChorusII
|
||
R1*8 % bridge
|
||
R1*16 % chorus ×2
|
||
R1
|
||
\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
|
||
|
||
\guitarVerse
|
||
\guitarChorus
|
||
R1*2
|
||
\guitarVerse
|
||
R1*8 % bare chorus
|
||
R1*8 % bridge
|
||
\guitarChorus
|
||
\guitarChorus
|
||
R1
|
||
\bar "|."
|
||
}
|