]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
Update LSR and fix Issue 1971
[lilypond.git] / Documentation / snippets / changing-fret-orientations.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.14.0"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12 %% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f
13
14   texidoces = "
15
16 Los diagramas de posiciones de acordes se pueden orientar de tres
17 formas.  De manera predeterminada se alinena la cuerda o traste
18 superior en las distintas alineaciones.
19
20
21 "
22
23   doctitlees = "Modificar la orientación de los trastes"
24
25 %% Translation of GIT committish: 40bf2b38d674c43f38058494692d1a0993fad0bd
26
27   texidocfr = "
28 Les diagrammes de fret peuvent s'orienter de trois manières différentes.
29 Ils s'aligneront par défaut sur la corde du haut ou le sommet du fret.
30
31
32 "
33
34   doctitlefr = "Orientation des diagrammes de fret"
35
36
37   texidoc = "
38 Fret diagrams can be oriented in three ways.  By default the top string
39 or fret in the different orientations will be aligned.
40
41 "
42   doctitle = "Changing fret orientations"
43 } % begin verbatim
44
45 \include "predefined-guitar-fretboards.ly"
46
47 <<
48   \chords {
49     c1
50     c1
51     c1
52   }
53   \new FretBoards {
54     \chordmode {
55       c1
56       \override FretBoard #'(fret-diagram-details orientation) =
57         #'landscape
58       c1
59       \override FretBoard #'(fret-diagram-details orientation) =
60         #'opposing-landscape
61       c1
62     }
63   }
64   \new Voice {
65     c'1
66     c'1
67     c'
68   }
69 >>
70