]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
c803ff9fdb4c739927aefb4bb2b0231dc5ab2f1a
[lilypond.git] / input / regression / finger-chords.ly
1
2 \version "1.9.2"
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         <<c-1 e-2 g-3 b-4 d-5 f-6 a-7 c-8 >> 4  
16
17         \property Voice.fingeringOrientations = #'(left)
18         << c-1  e-2 g-3 b-5 >> 4
19
20         \property Voice.fingeringOrientations = #'(down left)
21         << c-1  e-2 g-3 b-5 >> 4
22
23         \property Voice.fingeringOrientations = #'(down left up)
24         << c-1  e-2 g-3 b-5 >> 4
25
26         \property Voice.fingeringOrientations = #'(up left)
27         << c-1  e-2 g-3 b-5 >> 4
28
29         \property Voice.fingeringOrientations = #'(right)
30         << c-1  e-2 g-3 b-5 >> 4
31
32
33         
34 }
35
36 }
37
38
39
40