]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
dd8434417c46becc8ae6c2f9667f7f07bb0c9758
[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.39"
5
6 \header {
7   lsrtags = "editorial-annotations, chords, keyboards, fretted-strings"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23   texidocde = "
24 Die Position von Fingersatzzahlen kann exakt kontrolliert werden.
25
26 "
27   doctitlede = "Position von Fingersatz in Akkorden kontrollieren"
28
29 %% Translation of GIT committish: ac6297e4fa174ac5759cc450ad085c2fac9ba00b
30
31   texidocfr = "
32 Le positionnement des doigtés peut être contrôlé de manière très précise.
33 Afin que l'orientation soit prise en compte, il est nécessaire d'utiliser
34 une syntaxe d'accord @code{< >}, même s'il ne s'agit que d'une seule note.
35 "
36   doctitlefr = "Contrôler la position des doigtés dans un accord"
37
38
39   texidoc = "
40 The placement of fingering numbers can be controlled precisely. For
41 fingering orientation to apply, you must use a chord construct <> even
42 if it is a single note.
43
44 "
45   doctitle = "Controlling the placement of chord fingerings"
46 } % begin verbatim
47
48 \relative c' {
49   \set fingeringOrientations = #'(left)
50   <c-1 e-3 a-5>4
51   \set fingeringOrientations = #'(down)
52   <c-1 e-3 a-5>4
53   \set fingeringOrientations = #'(down right up)
54   <c-1 e-3 a-5>4
55   \set fingeringOrientations = #'(up)
56   <c-1 e-3 a-5>4
57   \set fingeringOrientations = #'(left)
58   <c-1>2
59   \set fingeringOrientations = #'(down)
60   <e-3>2
61 }
62
63