]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
* scm/bass-figure.scm (make-bass-figure-markup): add
[lilypond.git] / input / regression / finger-chords.ly
1 \version "1.7.18"
2 \header {
3
4 texidoc = "With the new chord syntax it's possible to associate
5 fingerings uniquely with notes. This makes horizontal fingering much
6 easier to process."
7
8 }
9     \paper { raggedright= ##t }
10
11
12 \score {
13     \notes \relative c'{
14         <<g_0>> 4
15         <<g_1>> 4
16         <<c''^5>> 4
17         <<e,^6>> 4
18         <<f,_1>> 4
19         << c-1 e-3>> 4
20         << c-1  e-3 g-5 >> 4
21         << c-1  e-2 g-3 b-5 >> 4
22         \property Voice.fingerHorizontalDirection = #LEFT
23         << c-1  es-3 g-5 >> 4
24         \property Voice.fingerHorizontalDirection = #RIGHT
25         << c-1  e-2 g-3 b-5 >> 4-\arpeggio
26         \property Voice.fingerHorizontalDirection = #LEFT
27         << c_1  e-2 g-3 b^5 >> 4
28         
29 }
30
31 }
32
33
34
35