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