]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-fingering-indications-precisely.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / positioning-fingering-indications-precisely.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.13.1"
4
5 \header {
6   lsrtags = "editorial-annotations"
7
8   texidoc = "
9 Generally the options available for positioning the fingering of chords
10 work well by default, but if one of the indications needs to positioned
11 more precisely the following tweak may be used.  This is particularly
12 useful for correcting the positioning when intervals of a second are
13 involved.
14
15 "
16   doctitle = "Positioning fingering indications precisely"
17 } % begin verbatim
18
19 \relative c' {
20   \set fingeringOrientations = #'(left)
21   <c-1 d-2 a'-5>4
22   <c-1 d-\tweak #'extra-offset #'(0 . 0.7)-2 a'-5>4
23   \set fingeringOrientations = #'(down)
24   <c-1 d-2 a'-5>4
25   <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
26   \set fingeringOrientations = #'(down right up)
27   <c-1 d-2 a'-5>4
28   <c-1 d-\tweak #'extra-offset #'(-1 . 1.2)-2 a'-5>4
29   \set fingeringOrientations = #'(up)
30   <c-1 d-2 a'-5>4
31   <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
32 }
33
34