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