]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-fingering-indications-precisely.ly
LSR: Update.
[lilypond.git] / Documentation / snippets / positioning-fingering-indications-precisely.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "editorial-annotations"
8
9   texidoc = "
10 Generally the options available for positioning the fingering of chords
11 work well by default, but if one of the indications needs to positioned
12 more precisely the following tweak may be used.  This is particularly
13 useful for correcting the positioning when intervals of a second are
14 involved.
15
16 "
17   doctitle = "Positioning fingering indications precisely"
18 } % begin verbatim
19
20 \relative c' {
21   \set fingeringOrientations = #'(left)
22   <c-1 d-2 a'-5>4
23   <c-1 d-\tweak #'extra-offset #'(0 . 0.7)-2 a'-5>4
24   \set fingeringOrientations = #'(down)
25   <c-1 d-2 a'-5>4
26   <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
27   \set fingeringOrientations = #'(down right up)
28   <c-1 d-2 a'-5>4
29   <c-1 d-\tweak #'extra-offset #'(-1 . 1.2)-2 a'-5>4
30   \set fingeringOrientations = #'(up)
31   <c-1 d-2 a'-5>4
32   <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
33 }
34
35