]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/placement-of-right-hand-fingerings.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / placement-of-right-hand-fingerings.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.0"
4
5 \header {
6   lsrtags = "fretted-strings"
7
8   texidoces = "
9 Es posible ejercer un mayor control sobre la colocación de las
10 digitaciones de la mano derecha estableciendo el valor de una
11 propiedad específica, como se muestra en el ejemplo siguiente.
12
13 "
14   doctitlees = "Posicionamiento de digitaciones de mano derecha"
15
16   texidoc = "
17 It is possible to exercise greater control over the placement of
18 right-hand fingerings by setting a specific property, as demonstrated
19 in the following example.
20
21 "
22   doctitle = "Placement of right-hand fingerings"
23 } % begin verbatim
24
25 #(define RH rightHandFinger)
26
27 \relative c {
28   \clef "treble_8"
29   
30   \set strokeFingerOrientations = #'(up down)
31   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
32   
33   \set strokeFingerOrientations = #'(up right down)
34   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
35   
36   \set strokeFingerOrientations = #'(left)
37   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >2
38 }