]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-fret-orientations.ly
89314689a581beacd74da9f492789b14f66c4a2b
[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.2"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
26   texidocfr = "
27 Les diagrammes de fret peuvent s'orienter de trois manières différentes.
28 Ils s'aligneront par défaut sur la corde du haut ou le sommet du fret.
29
30 "
31   doctitlefr = "Orientation des diagrammes de fret"
32
33
34   texidoc = "
35 Fret diagrams can be oriented in three ways.  By default the top string
36 or fret in the different orientations will be aligned.
37
38 "
39   doctitle = "Changing fret orientations"
40 } % begin verbatim
41
42
43 \include "predefined-guitar-fretboards.ly"
44
45 <<
46   \chords {
47     c1
48     c1
49     c1
50   }
51   \new FretBoards {
52     \chordmode {
53       c1
54       \override FretBoard #'(fret-diagram-details orientation) =
55         #'landscape
56       c1
57       \override FretBoard #'(fret-diagram-details orientation) =
58         #'opposing-landscape
59       c1
60     }
61   }
62   \new Voice {
63     c'1
64     c'1
65     c'
66   }
67 >>
68