diff --git a/new.ly b/new.ly deleted file mode 100644 index d2d3dc9..0000000 --- a/new.ly +++ /dev/null @@ -1,9 +0,0 @@ -\version "2.22.1" - -\relative { - \key d \minor - d''2~ 8 a d e | cis2 r | - c2~ 8 a c d | c16 b b8 b4 r2 | - bes2~ 8 g d' e | f16 e d8 d4 r2 | - cis2~ 8 a cis d | e16 d cis8 d4 r2 | -} diff --git a/siffler-en-presquile.ly b/siffler-en-presquile.ly index 0a91d8a..a6c4b4d 100644 --- a/siffler-en-presquile.ly +++ b/siffler-en-presquile.ly @@ -1,13 +1,34 @@ \version "2.22.1" -\relative -{ - \key d \minor - | 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 \bar "||" - - | f2 c4 a | g8 f' f e16 e~ 4 r | - | d2 a4 f | e8 d' cis b16 cis~ 4 r \bar "||" +voixUn = { + \relative { + \clef "treble" + \key d \minor + 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 \bar "||" + } +} + +voixDeux = { + \relative { + \clef "bass" + \key d \minor + f'2 c4 a | g8 f' f e16 e~ 4 r | + d2 a4 f | e8 d' cis b16 cis~ 4 r \bar "||" + } +} + +<< + { \voixUn } + { \voixDeux } +>> + +\relative { + \key d \minor + d''2~ 8 a d e | cis2 r | + c2~ 8 a c d | c16 b b8 b4 r2 | + bes2~ 8 g d' e | f16 e d8 d e f4 r | + cis2~ 8 a cis d | e16 d cis8 d4 r2 | }