lilypond-user-fr
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Quintolets imbriqués


From: Xavier Scheuer
Subject: Re: Quintolets imbriqués
Date: Tue, 3 Oct 2017 15:43:23 +0200

2017-10-03 13:46 GMT+02:00 Bernard Meylan <address@hidden>:
>
> Bonjour/soir à tous!
>
> J'ai ce code suivant:
>
> \version "2.18.2"
>
> \relative c' {
>   \time 1/1
>   \clef "treble_8"
>   \scaleDurations #'(5 . 4) {
>   \tupletDown \tuplet 5/2 { \set subdivideBeams = ##t \set Score.baseMoment
> = #(ly:make-moment 1/8) \set Staff.beatStructure = #'(2 2 2 2)
>                \tupletUp \tuplet 5/4 4 { d16[ c a b c a b c a b]} \tuplet
> 5/4 4 {c[ a b c d e f g a b]}
>   }
>   } c2
> }
>
> (un peu capilotracté... mais il s'agit de rendre «visible» l'interprétation
> de diminutions de Ganassi)
>
> j'ai donc des «petits» quintolets imbriqués dans un «grand» quintolet; pour
> davantage de lisiblité, je cherche à afficher l'indication chiffre/crochet
> du grand au dessous et celle des petits au dessus. Mais évidemment le
> premier commandement \tupletDown annule le \tupletUp...
> Avez-vous une solution?

Bonjour,

Utiliser la commande \tweak (cf. 4.1.4 Méthodes de retouche
 > La commande \tweak)
http://lilypond.org/doc/v2.18/Documentation/learning/tweaking-methods.fr.html#the-tweak-command

\relative c' {
  \time 1/1
  \clef "treble_8"
  \scaleDurations #'(5 . 4) {
    \tweak direction #down
    \tuplet 5/2 {
 \set subdivideBeams = ##t
 \set Score.baseMoment = #(ly:make-moment 1/8)
 \set Staff.beatStructure = #'(2 2 2 2)
 \tweak direction #up
 \tuplet 5/4 4 { d16[ c a b c a b c a b] }
 \tweak direction #up
 \tuplet 5/4 4 { c[ a b c d e f g a b] }
    }
  }
  c2
}


Cordialement,
Xavier

-- 
Xavier Scheuer <address@hidden>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]