]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/placement-of-right-hand-fingerings.ly
Imported Upstream version 2.19.45
[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.di.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.18.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 #(define RH rightHandFinger)
22
23 \relative c {
24   \clef "treble_8"
25
26   \set strokeFingerOrientations = #'(up down)
27   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
28
29   \set strokeFingerOrientations = #'(up right down)
30   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
31
32   \set strokeFingerOrientations = #'(left)
33   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >2
34 }