]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
* scm/define-grobs.scm (all-grob-descriptions): use staff-padding
[lilypond.git] / input / regression / finger-chords.ly
1
2 \version "2.1.7"
3 \header {
4
5 texidoc = "With the new chord syntax it's possible to associate
6 fingerings uniquely with notes. This makes horizontal fingering much
7 easier to process."
8
9 }
10     \paper { raggedright= ##t }
11
12
13 \score {
14     \notes \relative c'{
15
16         %% input order is not 1 2 3 , output is.
17         <c-1 g'-3 e-2  b'-4 d-5 f-6 a-7 c-8 > 4 
18
19         \property Voice.fingeringOrientations = #'(left)
20         < c-1  e-2 g-3 b-5 > 4
21
22         \property Voice.fingeringOrientations = #'(down left)
23         < c-1  e-2 g-3 b-5 > 4
24
25         \property Voice.fingeringOrientations = #'(down left up)
26         < c-1  e-2 g-3 b-5 > 4
27
28         \once \property Voice.Fingering \set #'staff-padding = #'()
29         < c-1  e-2 g-3 b-5 > 4
30
31         \property Voice.fingeringOrientations = #'(up left)
32         < c-1  e-2 g-3 b-5 > 4
33
34         \property Voice.fingeringOrientations = #'(right)
35         < c-1  e-2 g-3 b-5 > 4
36
37
38         
39 }
40
41 }
42
43
44
45