]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / regression / finger-chords.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
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         <<g_0>> 4
16         <<g_1>> 4
17         <<c''^5>> 4
18         <<e,^6>> 4
19         <<f,_1>> 4
20         << c-1 e-3>> 4
21         <<c-1 e-3 g-5 >> 4
22         <<c-1 e-2 g-3 b-5 >> 4
23         <<c-1 e-2 g-3 b-5 d-6 f-7 a-8 c-9 >> 4  
24         \property Voice.fingerHorizontalDirection = #LEFT
25         << c-1  es-3 g-5 >> 4
26         \property Voice.fingerHorizontalDirection = #RIGHT
27         << c-1  e-2 g-3 b-5 >> 4-\arpeggio
28         \property Voice.fingerHorizontalDirection = #LEFT
29         << c_1  e-2 g-3 b^5 >> 4
30         
31 }
32
33 }
34
35
36
37