]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/placement-of-right-hand-fingerings.ly
Merge master into nested-bookparts
[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.11.62"
4
5 \header {
6   lsrtags = "fretted-strings"
7
8   texidoc = "
9 It is possible to exercise greater control over the placement of
10 right-hand fingerings by setting a specific property, as demonstrated
11 in the following example.
12
13 "
14   doctitle = "Placement of right-hand fingerings"
15 } % begin verbatim
16 #(define RH rightHandFinger)
17
18 \relative c {
19   \clef "treble_8"
20   
21   \set strokeFingerOrientations = #'(up down)
22   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
23   
24   \set strokeFingerOrientations = #'(up right down)
25   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >4
26   
27   \set strokeFingerOrientations = #'(left)
28   <c-\RH #1 e-\RH #2 g-\RH #3 c-\RH #4 >2
29 }