Hello all.
I would like the fingering orientation for
both clefs to be to the left of the notes.
But when I render the example below, while
fingering in the bass clef is what I want,
to the left of notes, the fingering in the
treble clef is above the note.
What am I doing wrong? How can I fix this?
Thank you for your help.
\version "2.25.25"
\language "english"
\score {
\new PianoStaff
<<
\new Staff
{
\clef "treble"
\time 6/8
\key c \major
\set fingeringOrientations = #'(left)
e'2.-1
}
\new Staff
{
\clef "bass"
\time 6/8
\key c \major
\set fingeringOrientations = #'(left)
<c-5 e-3 g-1>2.
}
>>
}