]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/finger-chords.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / finger-chords.ly
1
2 \version "2.17.10"
3 \header {
4
5   texidoc = "It is possible to associate
6 fingerings uniquely with notes. This makes it possible to add
7 horizontal fingerings to notes. Fingering defaults to not clearing
8 flags and stems unless there is a collision or a beam.
9 "
10
11 }
12 \layout { ragged-right= ##t }
13
14
15
16 \relative c'{
17   \set fingeringOrientations = #'(left)
18   < c-1  e-2 g-3 b-5 > 4
19
20   \set fingeringOrientations = #'(down left)
21   < c-1  e-2 g-3 b-5 > 4
22
23   \set fingeringOrientations = #'(down left up)
24   < c-1  e-2 g-3 b-5 > 4
25
26   \once \override Fingering.staff-padding = #'()
27   < c-1  e-2 g-3 b-5 > 4
28
29   \set fingeringOrientations = #'(up right)
30   < c-1  e-2 g-3 b-5 > 4.
31
32   \set fingeringOrientations = #'(right)
33   < c-1  e-2 g-3 b-5 > 8
34
35   \override Fingering.add-stem-support = ##t
36   \set fingeringOrientations = #'(up right)
37   < c-1  e-2 g-3 b-5 > 4.
38
39   \set fingeringOrientations = #'(right)
40   < c-1  e-2 g-3 b-5 > 8
41
42 }
43
44
45
46
47