]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-placement-of-chord-fingerings.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[lilypond.git] / input / lsr / controlling-the-placement-of-chord-fingerings.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "editorial-and-educational-use, chords, piano-music"
7  texidoc = "
8 The placement of fingering numbers can be controlled precisely.
9 " }
10 % begin verbatim
11 \relative c'{
12   \set fingeringOrientations = #'(left)
13   <c-1 e-3 a-5 > 4
14   \set fingeringOrientations = #'(down)
15   <c-1 e-3 a-5 >
16   \set fingeringOrientations = #'(right)
17   <c-1 e-3 a-5 >
18   \set fingeringOrientations = #'(up)
19   <c-1 e-3 a-5 >
20   \set fingeringOrientations = #'(left down)
21   <c-1 e-3 a-5 > 2
22   \set fingeringOrientations = #'(up right down)
23   <c-1 e-3 a-5 >
24 }