lilypond-music/siffler-en-presquile.ly
2023-09-03 13:18:10 +02:00

81 lines
1.4 KiB
Text

\version "2.22.2"
global = {
\time 4/4
\key d \minor
}
verseOneUp = \relative {
r8 f'' f16 g8 a16~ 8 a g f | e a a gis16 a~ 2 |
r16 d,~ 8 d16 e8 f16~ 8 f e d | c f a, g16 a~ 2 |
r8 g g a16 bes~ 2 | d8 cis d e16 d~ 2 |
e4 cis d e | e8 d d e16 f~ 2 |
}
verseOneDown = \relative {
#(mmrest-of-length verseOneUp)
}
chorusOneUp = \relative {
f''2 c4 a |
g8 f' f e16 e~ 4 r |
d2 a4 f |
e8 d' cis b16 cis~ 4 r |
}
chorusOneDown = \relative {
f8. f16 c c8 c16 a8 f a bes |
c c~ c8. g16 c,4 r |
R1 |
R1 |
}
verseTwoUp = \relative c'' {
d8 cis d e f e d cis |
c!8 b c4 d8 cis a4 |
d8 cis d e f e d g |
c,?8 b c4 cis8 a cis4 |
d8 cis d e f e d cis |
c!8 b c4 d8 cis a4 |
d8 cis d e f e d f |
e8 dis e4 a8 gis a4 |
}
verseTwoDown = \relative {
#(mmrest-of-length verseTwoUp)
}
chorusTwoUp = \relative c'' {
bes4 a' g8 f e f |
g c, c4 cis8 a a'4 |
bes,4 a' g8 f e f |
g c, c4 cis8 a cis4 |
}
chorusTwoDown = \relative {
#(mmrest-of-length chorusTwoUp)
}
\score {
\new PianoStaff <<
\new Staff <<
\global
\clef treble
\new Voice {
\verseOneUp
\chorusOneUp
\break
\bar "||"
\verseTwoUp
\bar "||"
\chorusTwoUp
}
>>
\new Staff <<
\global
\clef bass
\new Voice {
\verseOneDown
\chorusOneDown
\break
\bar "||"
\verseTwoDown
\bar "||"
\chorusTwoDown
}
>>
>>
}