welkom/parts-strings.ly

80 lines
1.2 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
}
2020-10-04 20:21:39 +02:00
celloVerse = \fixed c {
b,1 | a, | d | e |
b,1 | a, | fs | a |
2020-09-23 00:40:57 +02:00
}
2020-10-04 20:21:39 +02:00
celloChorusI = \fixed c {
b,1 | d | <d a> | <cs a> |
<b, g>1 | <d fs> | <d a> | <cs a> |
<fs b> | R1 |
2020-09-23 00:40:57 +02:00
}
2020-10-04 20:21:39 +02:00
celloChorusII = \relative c {
2020-09-23 00:40:57 +02:00
b8 d4 d8 fs4 a, | g2. r4 |
2020-10-04 20:21:39 +02:00
a8 d r8 d fs4 d | cs2. r4 |
2020-09-23 00:40:57 +02:00
b'8 d,4 d8 d4 fs, | g2. r4 |
fs2 fs4 g | a2. r4 |
}
2020-10-04 20:21:39 +02:00
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 |
}
2020-09-19 16:46:15 +02:00
celloMusic = {
\meterAndTempo
2020-10-04 20:21:39 +02:00
\clef "bass"
2020-09-20 00:13:28 +02:00
\key b \minor
2020-09-19 16:46:15 +02:00
2020-10-04 20:21:39 +02:00
\fixed c { <b, fs>1 | <cs fs> | <d fs> | e2. d8 cs } |
2020-09-23 00:40:57 +02:00
\celloVerse
2020-10-04 20:21:39 +02:00
\celloChorusI % Drop already included
R1*3 % verse
\fixed c { r2. b,8 a, | b,4 r2. | }
R1*3
\celloChorusII % bare chorus
2020-09-23 00:40:57 +02:00
R1*8 % bridge
R1*8 % chorus
2020-10-04 20:21:39 +02:00
\celloChorusIII
\fixed c { b,1 }
2020-09-23 00:40:57 +02:00
\bar "|."
}
2020-09-21 18:03:46 +02:00
2020-09-23 00:40:57 +02:00
guitarVerse = \chordmode {
\repeat unfold 2 {
b,1:m | a,:9 | g, | a, |
2020-09-21 18:03:46 +02:00
}
2020-09-23 00:40:57 +02:00
}
guitarChorus = \chordmode {
\repeat unfold 2 {
b,:m | g, | d, | a, |
2020-09-21 18:03:46 +02:00
}
2020-09-19 16:46:15 +02:00
}
guitarMusic = {
\meterAndTempo
2020-09-20 00:13:28 +02:00
\key b \minor
R1*4
2020-09-23 00:40:57 +02:00
\guitarVerse
\guitarChorus
R1*2
\guitarVerse
R1*8 % bare chorus
R1*8 % bridge
\guitarChorus
\guitarChorus
R1
\bar "|."
2020-09-20 00:13:28 +02:00
}