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