]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/placement-of-right-hand-fingerings.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[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.16.0"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12   texidoc = "
13 It is possible to exercise greater control over the placement of
14 right-hand fingerings by setting a specific property, as demonstrated
15 in the following example. Note: you must use a chord construct
16
17 "
18   doctitle = "Placement of right-hand fingerings"
19 } % begin verbatim
20
21
22 #(define RH rightHandFinger)
23
24 \relative c {
25   \clef "treble_8"
26
27   \set strokeFingerOrientations = #'(up down)
28   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
29
30   \set strokeFingerOrientations = #'(up right down)
31   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
32
33   \set strokeFingerOrientations = #'(left)
34   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >2
35 }