]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
Docs: run convert-ly for 2.14.0.
[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: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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   texidoc = "
26 Fret diagrams can be oriented in three ways.  By default the top string
27 or fret in the different orientations will be aligned.
28
29 "
30   doctitle = "Changing fret orientations"
31 } % begin verbatim
32
33 \include "predefined-guitar-fretboards.ly"
34
35 <<
36   \chords {
37     c1
38     c1
39     c1
40   }
41   \new FretBoards {
42     \chordmode {
43       c1
44       \override FretBoard #'(fret-diagram-details orientation) =
45         #'landscape
46       c1
47       \override FretBoard #'(fret-diagram-details orientation) =
48         #'opposing-landscape
49       c1
50     }
51   }
52   \new Voice {
53     c'1
54     c'1
55     c'
56   }
57 >>
58