]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-fingering-indications-precisely.ly
Release: bump Welcome versions.
[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.di.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.18.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 \relative c' {
24   \set fingeringOrientations = #'(left)
25   <c-1 d-2 a'-5>4
26   <c-1 d-\tweak extra-offset #'(0 . 0.2)-2 a'-5>4
27   \set fingeringOrientations = #'(down)
28   <c-1 d-2 a'-5>4
29   <c-\tweak extra-offset #'(0 . -1.1)-1
30    d-\tweak extra-offset #'(-1.2 . -1.8)-2 a'-5>4
31   \set fingeringOrientations = #'(down right up)
32   <c-1 d-\tweak extra-offset #'(-0.3 . 0)-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-\tweak extra-offset #'(0 . 1.1)-2
36    a'-\tweak extra-offset #'(0 . 1)-5>4
37   <c-1 d-\tweak extra-offset #'(-1.2 . 1.5)-2
38    a'-\tweak extra-offset #'(0 . 1.4)-5>4
39 }