X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ffinger-chords.ly;h=41f7df22c5d9b691744a5648af18d9e90ef870bf;hb=bd3c92cbe6edabb9a006ff76290012aa8f8ed13a;hp=d11c8d7299bab4ea724ad76ceb577062b27089ea;hpb=51159f8679de00e6cd526ca2a16e1ea4d4294f81;p=lilypond.git diff --git a/input/regression/finger-chords.ly b/input/regression/finger-chords.ly index d11c8d7299..41f7df22c5 100644 --- a/input/regression/finger-chords.ly +++ b/input/regression/finger-chords.ly @@ -1,44 +1,46 @@ -\version "2.3.4" +\version "2.14.0" \header { -texidoc = "With the new chord syntax, it is 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. Fingering clears stems and flags +if @code{'add-stem-support} is set. +" } - \paper { raggedright= ##t } +\layout { ragged-right= ##t } -\score { - \relative c'{ - %% input order is not 1 2 3 , output is. - 4 +\relative c'{ + \set fingeringOrientations = #'(left) + < c-1 e-2 g-3 b-5 > 4 - \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) - < c-1 e-2 g-3 b-5 > 4 + \set fingeringOrientations = #'(down left up) + < 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 - \once \override Fingering #'staff-padding = #'() - < c-1 e-2 g-3 b-5 > 4 + \set fingeringOrientations = #'(up right) + < 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 > 8 - \set fingeringOrientations = #'(right) - < c-1 e-2 g-3 b-5 > 4 + \override Fingering #'add-stem-support = ##t + \set fingeringOrientations = #'(up right) + < c-1 e-2 g-3 b-5 > 4. + \set fingeringOrientations = #'(right) + < c-1 e-2 g-3 b-5 > 8 - } -}