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