]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Doc: update snippet committishes.
[lilypond.git] / Documentation / snippets / controlling-the-placement-of-chord-fingerings.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.10"
5
6 \header {
7   lsrtags = "editorial-annotations, chords, keyboards, fretted-strings"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
10   texidoces = "
11 Se puede controlar con precisión la colocación de los números de
12 digitación.  Para que se tenga en cuenta la orientación de las
13 digitaciones, se debe utilizar una construcción de acorde <> aunque
14 sea una sola nota.
15
16
17 "
18   doctitlees = "Controlar la colocación de las digitaciones de acordes"
19
20
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
22   texidocde = "
23 Die Position von Fingersatzzahlen kann exakt kontrolliert werden.
24
25 "
26   doctitlede = "Position von Fingersatz in Akkorden kontrollieren"
27 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
28
29   texidocfr = "
30 Le positionnement des doigtés peut être contrôlé de manière très précise.
31
32 "
33   doctitlefr = "Conrôle du positionnement des doigtés"
34
35
36   texidoc = "
37 The placement of fingering numbers can be controlled precisely. For
38 fingering orientation to apply, you must use a chord construct <> even
39 if it is a single note.
40
41 "
42   doctitle = "Controlling the placement of chord fingerings"
43 } % begin verbatim
44
45 \relative c' {
46   \set fingeringOrientations = #'(left)
47   <c-1 e-3 a-5>4
48   \set fingeringOrientations = #'(down)
49   <c-1 e-3 a-5>4
50   \set fingeringOrientations = #'(down right up)
51   <c-1 e-3 a-5>4
52   \set fingeringOrientations = #'(up)
53   <c-1 e-3 a-5>4
54   \set fingeringOrientations = #'(left)
55   <c-1>2
56   \set fingeringOrientations = #'(down)
57   <e-3>2
58 }
59
60