]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/controlling-the-placement-of-chord-fingerings.ly
Imported Upstream version 2.16.0
[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.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 = "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
22 \relative c' {
23   \set fingeringOrientations = #'(left)
24   <c-1 e-3 a-5>4
25   \set fingeringOrientations = #'(down)
26   <c-1 e-3 a-5>4
27   \set fingeringOrientations = #'(down right up)
28   <c-1 e-3 a-5>4
29   \set fingeringOrientations = #'(up)
30   <c-1 e-3 a-5>4
31   \set fingeringOrientations = #'(left)
32   <c-1>2
33   \set fingeringOrientations = #'(down)
34   <e-3>2
35 }