]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-placement-of-chord-fingerings.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / controlling-the-placement-of-chord-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.46"
4
5 \header {
6   lsrtags = "editorial-annotations, chords, keyboards"
7
8   texidoc = "
9 The placement of fingering numbers can be controlled precisely.
10
11 "
12   doctitle = "Controlling the placement of chord fingerings"
13 } % begin verbatim
14 \relative c' {
15   \set fingeringOrientations = #'(left)
16   <c-1 e-3 a-5>4
17   \set fingeringOrientations = #'(down)
18   <c-1 e-3 a-5>4
19   \set fingeringOrientations = #'(right)
20   <c-1 e-3 a-5>4
21   \set fingeringOrientations = #'(up)
22   <c-1 e-3 a-5>4
23   \set fingeringOrientations = #'(left down)
24   <c-1 e-3 a-5>2
25   \set fingeringOrientations = #'(up right down)
26   <c-1 e-3 a-5>2
27 }