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