]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/positioning-fingering-indications-precisely.ly
3ca33e858122dbf4dac53214d80e9497e947be08
[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.14.2"
8
9 \header {
10   lsrtags = "editorial-annotations"
11
12 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
13   texidocfr = "
14 Les options par défaut en matière de positionnement des doigtés d'un
15 accord donnent généralement de bons résultats.  Il se peut néanmoins
16 qu'un ajustement soit nécessaire dans certains cas particuliers,
17 notamment en présence d'un intervalle de seconde.  L'astuce ici
18 présentée permet d'obtenir un meilleur rendu.
19
20 "
21   doctitlefr = "Positionnement précis des indications de doigté"
22
23   texidoc = "
24 Generally the options available for positioning the fingering of chords
25 work well by default, but if one of the indications needs to positioned
26 more precisely the following tweak may be used.  This is particularly
27 useful for correcting the positioning when intervals of a second are
28 involved.
29
30 "
31   doctitle = "Positioning fingering indications precisely"
32 } % begin verbatim
33
34
35 \relative c' {
36   \set fingeringOrientations = #'(left)
37   <c-1 d-2 a'-5>4
38   <c-1 d-\tweak #'extra-offset #'(0 . 0.7)-2 a'-5>4
39   \set fingeringOrientations = #'(down)
40   <c-1 d-2 a'-5>4
41   <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
42   \set fingeringOrientations = #'(down right up)
43   <c-1 d-2 a'-5>4
44   <c-1 d-\tweak #'extra-offset #'(-1 . 1.2)-2 a'-5>4
45   \set fingeringOrientations = #'(up)
46   <c-1 d-2 a'-5>4
47   <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
48 }
49
50