]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
* lily/new-fingering-engraver.cc (position_scripts): take priority
[lilypond.git] / input / regression / finger-chords.ly
1
2 \version "2.4.0"
3 \header {
4
5 texidoc = "With the new chord syntax, it is possible to associate
6 fingerings uniquely with notes. This makes it possible to add
7 horizontal fingerings to notes.
8
9 "
10
11 }
12     \layout { raggedright= ##t }
13
14
15 \score {
16      \relative c'{
17         \set fingeringOrientations = #'(left)
18         < c-1  e-2 g-3 b-5 > 4
19
20         \set fingeringOrientations = #'(down left)
21         < c-1  e-2 g-3 b-5 > 4
22
23         \set fingeringOrientations = #'(down left up)
24         < c-1  e-2 g-3 b-5 > 4
25
26         \once \override Fingering  #'staff-padding = #'()
27         < c-1  e-2 g-3 b-5 > 4
28
29         \set fingeringOrientations = #'(up left)
30         < c-1  e-2 g-3 b-5 > 4
31
32         \set fingeringOrientations = #'(right)
33         < c-1  e-2 g-3 b-5 > 4
34
35     }
36 }
37
38
39
40