]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/placement-of-right-hand-fingerings.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: af01b3b78afa2e7c3c60e7280ee0b6382135bd35
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.  N'oubliez pas le construction de type accord.
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
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