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