]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
b6dcc7d39154454f5179e71fc7d8e155f8a18f43
[lilypond.git] / Documentation / snippets / changing-fret-orientations.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "fretted-strings"
8
9 %% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce
10
11   texidoces = "
12
13 Los diagramas de posiciones de acordes se pueden orientar de tres
14 formas.  De manera predeterminada se alinena la cuerda o traste
15 superior en las distintas alineaciones.
16
17
18 "
19
20   doctitlees = "Modificar la orientaciĆ³n de los trastes"
21
22   texidoc = "
23 Fret diagrams can be oriented in three ways.  By default the top string
24 or fret in the different orientations will be aligned.
25
26 "
27   doctitle = "Changing fret orientations"
28 } % begin verbatim
29
30 \include "predefined-guitar-fretboards.ly"
31
32 <<
33   \chords {
34     c1
35     c1
36     c1
37   }
38   \new FretBoards {
39     \chordmode {
40       c1
41       \override FretBoard #'(fret-diagram-details orientation) =
42         #'landscape
43       c1
44       \override FretBoard #'(fret-diagram-details orientation) =
45         #'opposing-landscape
46       c1
47     }
48   }
49   \new Voice {
50     c'1
51     c'1
52     c'
53   }
54 >>
55