]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Allow open strings in chords regardless of finger positions
[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: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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   texidocfr = "
34 Le positionnement des doigtés peut être contrôlé de manière très précise.
35 Afin que l'orientation soit prise en compte, il est nécessaire d'utiliser
36 une syntaxe d'accord @code{<@tie{}>}, même s'il ne s'agit que d'une
37 seule note.
38
39 "
40   doctitlefr = "Contrôler la position des doigtés dans un accord"
41
42
43   texidoc = "
44 The placement of fingering numbers can be controlled precisely. For
45 fingering orientation to apply, you must use a chord construct <> even
46 if it is a single note.
47
48 "
49   doctitle = "Controlling the placement of chord fingerings"
50 } % begin verbatim
51
52 \relative c' {
53   \set fingeringOrientations = #'(left)
54   <c-1 e-3 a-5>4
55   \set fingeringOrientations = #'(down)
56   <c-1 e-3 a-5>4
57   \set fingeringOrientations = #'(down right up)
58   <c-1 e-3 a-5>4
59   \set fingeringOrientations = #'(up)
60   <c-1 e-3 a-5>4
61   \set fingeringOrientations = #'(left)
62   <c-1>2
63   \set fingeringOrientations = #'(down)
64   <e-3>2
65 }
66
67