welkom/parts-strings.ly

69 lines
957 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
\fixed c, { b,1 | cs | d | fs } |
\celloVerse
\celloChorusI
R1*2
R1*8 % verse
\celloChorusII % bare chorus
R1*8 % bridge
R1*8 % chorus
\celloChorusII
\fixed c, { e,2 r }
\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 "|."
}