]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
40e3f6a819f7cabe7fd86ba13d2830a6b2f06a48
[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
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         \property Voice.fingeringOrientations = #'(up left)
29         << c-1  e-2 g-3 b-5 >> 4
30
31         \property Voice.fingeringOrientations = #'(right)
32         << c-1  e-2 g-3 b-5 >> 4
33
34
35         
36 }
37
38 }
39
40
41
42