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