I have a piece of music I am trying to rewrite with new fingerings, and it starts with a small section that gives you the basic idea on how to play the piece.
The problem is that with the notation I am trying to create I have a tuplet bracket that is coinciding with fingerings.
Is there a way to vertically move this bracket out of the way? Or am I stuck with simply repositioning the fingerings? image for reference
Working snippet:
version "2.24.4"
language "english"
% begin
{
clef treble
time 2/4
tempo Adagio
key c minor
fixed c' {
tupletUp tuplet 6/4 4 {
% set up the idea of how to play this music
override TupletBracket.tuplet-slur = ##t
override TupletBracket.bracket-visibility = ##t
override Fingering.staff-padding = #'()
set strokeFingerOrientations = #'(up)
c16_1 rightHandFinger #1 ^[ g_0 rightHandFinger #2 af'_4 rightHandFinger #4 ef'_3 rightHandFinger #3 g'_2 rightHandFinger #4 g_0 rightHandFinger #2]
}
}
I have attempted to override
the y-position
of TupletBracket
to no avail, it does not move it at all.