Placement of right-hand fingerings: Difference between revisions
Appearance
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series |
No edit summary |
||
| Line 22: | Line 22: | ||
[[Category:Fretted strings]] | [[Category:Fretted strings]] | ||
[[Category:Included in the official documentation]] | [[Category:Included in the official documentation]][[Category:Snippet]] | ||
Revision as of 22:57, 21 November 2025
It is possible to exercise greater control over the placement of right-hand fingerings by setting a specific property, as demonstrated in the following example.
\version "2.24"
#(define RH rightHandFinger)
\relative c {
\clef "treble_8"
\set strokeFingerOrientations = #'(up down)
<c\RH 1 e\RH 2 g\RH 3 c\RH 4 >4
\set strokeFingerOrientations = #'(up right down)
<c\RH 1 e\RH 2 g\RH 3 c\RH 4 >4
\set strokeFingerOrientations = #'(left)
<c\RH 1 e\RH 2 g\RH 3 c\RH 4 >2
\set strokeFingerOrientations = #'(right)
c\RH 1
}