In the following example, the arpeggio symbol appears over the time signature,
about 1cm from the chord, and the finger number is to the left of the arpeggio
symbol, while I want the finger number to be on the right of the arpeggio
symbol. Suggestions?


\version "2.13.40"
\include "english.ly"
#(set-global-staff-size 24)
melody = \relative c {
    \set fingeringOrientations = #'(left)
    \set Staff.connectArpeggios = ##t
    \stemUp <g''-4 e>2\arpeggio f4 e \break
}
bass = \relative c {
    \set fingeringOrientations = #'(left)
    <g' e>2\arpeggio d4 c \break
}
\score {
    <<
        \new Staff \with {
            \consists "Span_arpeggio_engraver"
        } <<
            \clef "treble_8"
            \context Voice = one \melody
            \context Voice = two \bass
        >>
    >>
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to