]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
Doc: run makelsr locally.
[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 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
26
27   texidoces = "
28
29 Los diagramas de posiciones de acordes se pueden orientar de tres
30 formas.  De manera predeterminada se alinena la cuerda o traste
31 superior en las distintas alineaciones.
32
33
34 "
35
36   doctitlees = "Modificar la orientación de los trastes"
37
38   texidoc = "
39 Fret diagrams can be oriented in three ways.  By default the top string
40 or fret in the different orientations will be aligned.
41
42 "
43   doctitle = "Changing fret orientations"
44 } % begin verbatim
45
46 \include "predefined-guitar-fretboards.ly"
47
48 <<
49   \chords {
50     c1
51     c1
52     c1
53   }
54   \new FretBoards {
55     \chordmode {
56       c1
57       \override FretBoard #'(fret-diagram-details orientation) =
58         #'landscape
59       c1
60       \override FretBoard #'(fret-diagram-details orientation) =
61         #'opposing-landscape
62       c1
63     }
64   }
65   \new Voice {
66     c'1
67     c'1
68     c'
69   }
70 >>
71