]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/placement-of-right-hand-fingerings.ly
Allow open strings in chords regardless of finger positions
[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: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
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   texidocfr = "
34 Vous disposez d'une propriété spécifique qui permet de contrôler plus
35 finement le positionnement des doigtés main droite, comme l'indique
36 l'exemple suivant.
37
38 "
39   doctitlefr = "Positionnement des doigtés main droite"
40
41
42   texidoc = "
43 It is possible to exercise greater control over the placement of
44 right-hand fingerings by setting a specific property, as demonstrated
45 in the following example. Note: you must use a chord construct
46
47 "
48   doctitle = "Placement of right-hand fingerings"
49 } % begin verbatim
50
51 #(define RH rightHandFinger)
52
53 \relative c {
54   \clef "treble_8"
55
56   \set strokeFingerOrientations = #'(up down)
57   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
58
59   \set strokeFingerOrientations = #'(up right down)
60   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
61
62   \set strokeFingerOrientations = #'(left)
63   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >2
64 }
65