]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/controlling-the-placement-of-chord-fingerings.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "editorial-annotations, chords, keyboards, fretted-strings"
7
8   texidoces = "
9 Se puede controlar con precisión la colocación de los números de digitación.
10
11 "
12   doctitlees = "Controlar la colocación de las digitaciones de acordes"
13
14   texidoc = "
15 The placement of fingering numbers can be controlled precisely.
16
17 "
18   doctitle = "Controlling the placement of chord fingerings"
19 } % begin verbatim
20 \relative c' {
21   \set fingeringOrientations = #'(left)
22   <c-1 e-3 a-5>4
23   \set fingeringOrientations = #'(down)
24   <c-1 e-3 a-5>4
25   \set fingeringOrientations = #'(right)
26   <c-1 e-3 a-5>4
27   \set fingeringOrientations = #'(up)
28   <c-1 e-3 a-5>4
29   \set fingeringOrientations = #'(left down)
30   <c-1 e-3 a-5>2
31   \set fingeringOrientations = #'(up right down)
32   <c-1 e-3 a-5>2
33 }