Add new melody

This commit is contained in:
Tunui Franken 2023-09-03 13:18:10 +02:00
parent 217a3cb0e3
commit 3e611074a3

View file

@ -5,22 +5,48 @@ global = {
\key d \minor \key d \minor
} }
verseUp = \relative { verseOneUp = \relative {
r8 f'' f16 g8 a16~ 8 a g f | e a a gis16 a~ 2 | 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 | 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 | r8 g g a16 bes~ 2 | d8 cis d e16 d~ 2 |
e4 cis d e | e8 d d e16 f~ 2 \bar "||" e4 cis d e | e8 d d e16 f~ 2 |
} }
verseDown = \relative { verseOneDown = \relative {
#(mmrest-of-length verseUp) #(mmrest-of-length verseOneUp)
} }
chorusUp = \relative { chorusOneUp = \relative {
f''2 c4 a | g8 f' f e16 e~ 4 r | f''2 c4 a |
d2 a4 f | e8 d' cis b16 cis~ 4 r \bar "||" g8 f' f e16 e~ 4 r |
d2 a4 f |
e8 d' cis b16 cis~ 4 r |
} }
chorusDown = \relative { chorusOneDown = \relative {
f8. f16 c c8 c16 a8 f a bes | f8. f16 c c8 c16 a8 f a bes |
c c~ c8. g16 c,4 r | 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 { \score {
@ -29,16 +55,26 @@ chorusDown = \relative {
\global \global
\clef treble \clef treble
\new Voice { \new Voice {
\verseUp \verseOneUp
\chorusUp \chorusOneUp
\break
\bar "||"
\verseTwoUp
\bar "||"
\chorusTwoUp
} }
>> >>
\new Staff << \new Staff <<
\global \global
\clef bass \clef bass
\new Voice { \new Voice {
\verseDown \verseOneDown
\chorusDown \chorusOneDown
\break
\bar "||"
\verseTwoDown
\bar "||"
\chorusTwoDown
} }
>> >>
>> >>