]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
a1aa84735186b0ad6e2a73c41c21660c7aa50340
[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.16"
5
6 \header {
7   lsrtags = "editorial-annotations, chords, keyboards, fretted-strings"
8
9 %% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: ac6297e4fa174ac5759cc450ad085c2fac9ba00b
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