]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18   texidocde = "
19 Die Position von Fingersatzzahlen kann exakt kontrolliert werden.
20
21 "
22   doctitlede = "Position von Fingersatz in Akkorden kontrollieren"
23 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
24
25   texidocfr = "
26 Le positionnement des doigtés peut être contrôlé de manière très précise.
27
28 "
29   doctitlefr = "Conrôle du positionnement des doigtés"
30
31
32   texidoc = "
33 The placement of fingering numbers can be controlled precisely. For
34 fingering orientation to apply, you must use a chord construct <> even
35 if it is a single note.
36
37 "
38   doctitle = "Controlling the placement of chord fingerings"
39 } % begin verbatim
40
41 \relative c' {
42   \set fingeringOrientations = #'(left)
43   <c-1 e-3 a-5>4
44   \set fingeringOrientations = #'(down)
45   <c-1 e-3 a-5>4
46   \set fingeringOrientations = #'(down right up)
47   <c-1 e-3 a-5>4
48   \set fingeringOrientations = #'(up)
49   <c-1 e-3 a-5>4
50   \set fingeringOrientations = #'(left)
51   <c-1>2
52   \set fingeringOrientations = #'(down)
53   <e-3>2
54 }
55
56