Hi Ivan,

You wrote:
> 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?

it seems to be necessary, that the note to be "finger-orientated" has to
be written as a chord, so your minimal modified example should work:

\version "2.25.25"
\language "english"


\score {

  \new PianoStaff
  <<
     \new Staff
     {
       \clef "treble"
       \time 6/8
       \key c \major
       \set fingeringOrientations = #'(left)

       <e'-1>2.
     }

     \new Staff
     {
       \clef "bass"
       \time 6/8
       \key c \major
       \set fingeringOrientations = #'(left)

       <c-5 e-3  g-1>2.
     }
  >>
}

HTH, and best retards
Roland

Reply via email to