X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ffinger-chords.ly;h=abb0fb2783f9ef4b6adf3e21d065d6f4816dbc36;hb=33fee1aae93af367e6d2f0a80bef3e1b38eda9eb;hp=bb6f10d66a17b34026da4b22c96682098d17920c;hpb=e9bd265943d37689b1a6892217cb6f67bbe69f73;p=lilypond.git diff --git a/input/regression/finger-chords.ly b/input/regression/finger-chords.ly index bb6f10d66a..abb0fb2783 100644 --- a/input/regression/finger-chords.ly +++ b/input/regression/finger-chords.ly @@ -1,37 +1,40 @@ -#(ly:set-option 'old-relative) -\version "1.9.1" + +\version "2.12.0" \header { -texidoc = "With the new chord syntax it's possible to associate -fingerings uniquely with notes. This makes horizontal fingering much -easier to process." + texidoc = "It is possible to associate +fingerings uniquely with notes. This makes it possible to add +horizontal fingerings to notes. + +" } - \paper { raggedright= ##t } - - -\score { - \notes \relative c'{ - <> 4 - <> 4 - <> 4 - <> 4 - <> 4 - << c-1 e-3>> 4 - <> 4 - <> 4 - <> 4 - \property Voice.fingerHorizontalDirection = #LEFT - << c-1 es-3 g-5 >> 4 - \property Voice.fingerHorizontalDirection = #RIGHT - << c-1 e-2 g-3 b-5 >> 4\arpeggio - \property Voice.fingerHorizontalDirection = #LEFT - << c_1 e-2 g-3 b^5 >> 4 - -} +\layout { ragged-right= ##t } + + + +\relative c'{ + \set fingeringOrientations = #'(left) + < c-1 e-2 g-3 b-5 > 4 + + \set fingeringOrientations = #'(down left) + < c-1 e-2 g-3 b-5 > 4 + + \set fingeringOrientations = #'(down left up) + < c-1 e-2 g-3 b-5 > 4 + + \once \override Fingering #'staff-padding = #'() + < c-1 e-2 g-3 b-5 > 4 + + \set fingeringOrientations = #'(up left) + < c-1 e-2 g-3 b-5 > 4 + + \set fingeringOrientations = #'(right) + < c-1 e-2 g-3 b-5 > 4 } +