La première croche n'est pas liée au quatre doubles qui le sont.Avec
le chiffre 3 au-dessus, cela reste plutôt lisible.
Ah ça y est, j'ai enfin trouvé le petit
truc qui me manquait:
Il faut pour le rythme rajouter juste
avant :
\set beatLength = #(ly:make-moment 1
12)
(qui 1/12 correspond à la croche de
triolet).
Ce qui donne le code suivant :
%%%%%%%%%%%%%%%%%%%%%%%%
{ \clef bass \key c \major \time
2/2 c4 r4 c4 r4r8 r16 c16
\override TupletNumber #'stencil =
##f \override TupletBracket #'stencil = ##f
\set beatLength = #(ly:make-moment 1
4) \times 2/3 {c8 c c }
\set beatLength = #(ly:make-moment 1
12) \times 2/3 { g8[ g16 g g g] } %% marche bien
maintenant
\set beatLength = #(ly:make-moment 1
4) \times 2/3 { g8 g g } c8. c16 \times 2/3 { c8 c c }
\set beatLength = #(ly:make-moment 1
12) \times 2/3 { g8[ g16 g g g] } %% marche bien maintenant
\set beatLength = #(ly:make-moment 1
4) \times 2/3 { g8 g g } c8
} %%%%%%%%%%%%%%%%%%%%%%%%%%%%
Où bien, en positionnant une bonne fois
pour toute \set beatLength = #(ly:make-moment 1 12).
(On est alors obligé de mettre tous les
crochets [ ] )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
{ \clef bass \key c \major \time
2/2 c4 r4 c4 r4r8 r16 c16
\override TupletNumber #'stencil =
##f \override TupletBracket #'stencil = ##f \set beatLength =
#(ly:make-moment 1 12)
\times 2/3 {c8[ c c] } \times
2/3 { g8[ g16 g g g] } %% marche bien maintenant \times 2/3 { g8[ g
g] } c8. c16 \times 2/3 { c8[ c c] } \times 2/3 { g8[ g16 g g g] } %%
marche bien maintenant \times 2/3 { g8[ g g] } c8
} %%%%%%%%%%%%%%%%%%%%%%%%%%%%
Bon, c'est un peu lourd quand
même
Gilles
|