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
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user