]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / controlling-the-placement-of-chord-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 = "chords, editorial-annotations, fretted-strings, keyboards, specific-notation"
11
12   texidoc = "
13 The placement of fingering numbers can be controlled precisely. For
14 fingering orientation to apply, you must use a chord construct <> even
15 if it is a single note.
16
17 "
18   doctitle = "Controlling the placement of chord fingerings"
19 } % begin verbatim
20
21 \relative c' {
22   \set fingeringOrientations = #'(left)
23   <c-1 e-3 a-5>4
24   \set fingeringOrientations = #'(down)
25   <c-1 e-3 a-5>4
26   \set fingeringOrientations = #'(down right up)
27   <c-1 e-3 a-5>4
28   \set fingeringOrientations = #'(up)
29   <c-1 e-3 a-5>4
30   \set fingeringOrientations = #'(left)
31   <c-1>2
32   \set fingeringOrientations = #'(down)
33   <e-3>2
34 }