Hello,

I write a piece for harp. I need sometimes fingering information for the player.
While sometimes fingering above the staff is ok, I need it at the left side under some circumstances. In the example I want to write the fingering number for the notes "ces" and "es" at the left side of the arpeggio, but I did not succeed.

How can I achieve this request?

Best regards,
Helge

\version "2.10.4"
\include "deutsch.ly"


upperStaff = \relative c' {
	\clef treble	\key as \minor	\time 2/4
	
	\repeat volta 2 {
		\set fingeringOrientations = #'(left)
		<ces-4 es-3 ces'-1>4(\p^"Andante" <ces es ces'>) |
		
		\set fingeringOrientations = #'(left)
		<< { b'\arpeggio( as) } \\ { <ces,-4 es-3>2\arpeggio } >> |
	}
}

lowerStaff = \relative c {
	\clef bass	\key as \minor	\time 2/4
	as | as
}


\book {
	\score {
		\context PianoStaff <<
			\set PianoStaff.connectArpeggios = ##t
			\context Staff = upper \upperStaff
			\context Staff = lower \lowerStaff
		>>
		\layout { }
	}
}

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

Reply via email to