lilypond-user
[Top][All Lists]
Advanced

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

Re: tuplet number placement and ornament


From: David Nalesnik
Subject: Re: tuplet number placement and ornament
Date: Mon, 30 Apr 2012 07:05:02 -0500

Nick,
 
In the following, even though I've turned off the tuplet bracket
stencil, the tuplet number is still placed as though the stencil was there:

\version "2.15.37"

\relative c'' {
   \set tupletSpannerDuration = #(ly:make-moment 1 4)
   \override TupletBracket #'stencil = ##f
   \times 2/3 { g8 fis g g\mordent fis g }
}


Since the number is positioned according to where the bracket would be, you could override 'positions of TupletBracket:

\relative c'' {
   \set tupletSpannerDuration = #(ly:make-moment 1 4)
   \times 2/3 { 
     g8 fis g
     \override TupletBracket #'positions = #'(3.34 . 3.34)
     g\mordent fis g
   }
}

HTH,
David

reply via email to

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