]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/placement-of-right-hand-fingerings.ly
Docs: reorganize documentation directory structure
[lilypond.git] / Documentation / snippets / placement-of-right-hand-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 = "fretted-strings"
7
8 %% Translation of GIT committish: acbcbe3683d629575967b972b64ca5e1589bf330
9   texidoces = "
10 Es posible ejercer un mayor control sobre la colocación de las
11 digitaciones de la mano derecha estableciendo el valor de una
12 propiedad específica, como se muestra en el ejemplo siguiente.
13
14 "
15   doctitlees = "Posicionamiento de digitaciones de mano derecha"
16
17 %% Translation of GIT committish: 3f880f886831b8c72c9e944b3872458c30c6c839
18
19   texidocfr = "
20 Vous disposez d'une propriété spécifique qui permet de contrôler plus 
21 finement le positionnement des doigtés main droite, comme l'indique 
22 l'exemple suivant.
23
24 "
25   doctitlefr = "Positionnement des doigtés main droite"
26
27 %% Translation of GIT committish: 33f623301a41fcc53efadf96bca1c72834763415
28   texidocde = "
29 Man kann die Positionierung von Fingersatz der rechten Hand besser
30 kontrollieren, wenn eine bestimmte Eigenschaft gesetzt wird, wie
31 das folgende Beispiel zeigt:
32
33 "
34   doctitlede = "Positionierung von Fingersatz der rechten Hand"
35
36   texidoc = "
37 It is possible to exercise greater control over the placement of
38 right-hand fingerings by setting a specific property, as demonstrated
39 in the following example.
40
41 "
42   doctitle = "Placement of right-hand fingerings"
43 } % begin verbatim
44
45 #(define RH rightHandFinger)
46
47 \relative c {
48   \clef "treble_8"
49   
50   \set strokeFingerOrientations = #'(up down)
51   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
52   
53   \set strokeFingerOrientations = #'(up right down)
54   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
55   
56   \set strokeFingerOrientations = #'(left)
57   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >2
58 }
59