]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Doc-de: updates from master to NR
[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.
34
35 "
36   doctitle = "Controlling the placement of chord fingerings"
37 } % begin verbatim
38
39 \relative c' {
40   \set fingeringOrientations = #'(left)
41   <c-1 e-3 a-5>4
42   \set fingeringOrientations = #'(down)
43   <c-1 e-3 a-5>4
44   \set fingeringOrientations = #'(down right up)
45   <c-1 e-3 a-5>4
46   \set fingeringOrientations = #'(up)
47   <c-1 e-3 a-5>4
48   \set fingeringOrientations = #'(left)
49   <c-1>2
50   \set fingeringOrientations = #'(down)
51   <e-3>2
52 }
53
54