]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / controlling-the-placement-of-chord-fingerings.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "editorial-annotations, chords, keyboards, fretted-strings"
7
8 %% Translation of GIT committish: 7e2910d2bc6167b10cfe328eb17a5f710f2a515a
9   texidoces = "
10 Se puede controlar con precisión la colocación de los números de digitación.
11
12 "
13   doctitlees = "Controlar la colocación de las digitaciones de acordes"
14
15
16 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
17
18   texidocfr = "
19 Le positionnement des doigtés peut être contrôlé de manière très précise.
20
21 "
22   doctitlefr = "Conrôle du positionnement des doigtés"
23
24 %% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
25   texidocde = "
26 Die Position von Fingersatzzahlen kann exakt kontrolliert werden.
27
28 "
29   doctitlede = "Position von Fingersatz in Akkorden kontrollieren"
30
31   texidoc = "
32 The placement of fingering numbers can be controlled precisely.
33
34 "
35   doctitle = "Controlling the placement of chord fingerings"
36 } % begin verbatim
37
38 \relative c' {
39   \set fingeringOrientations = #'(left)
40   <c-1 e-3 a-5>4
41   \set fingeringOrientations = #'(down)
42   <c-1 e-3 a-5>4
43   \set fingeringOrientations = #'(down right up)
44   <c-1 e-3 a-5>4
45   \set fingeringOrientations = #'(up)
46   <c-1 e-3 a-5>4
47   \set fingeringOrientations = #'(left)
48   <c-1>2
49   \set fingeringOrientations = #'(down)
50   <e-3>2
51 }
52
53