]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chordchanges-for-fretboards.ly
16904213add2dccebbdc8d80889534398ec6f31f
[lilypond.git] / Documentation / snippets / chordchanges-for-fretboards.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   texidoces = "
14 Se puede hacer que los diagramas de posiciones se muestren sólo
15 cuando el acorde cambia o al comienzo de una nueva línea.
16
17 "
18
19   doctitlees = "Cambios de acorde de posiciones de trastes"
20
21
22 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
23 texidocde = "
24 Bunddiagramme können definiert werden, sodass sie nur angezeigt werden,
25 wenn der Akkord sich ändert oder eine neue Zeile anfängt.
26
27 "
28
29   doctitlede = "Akkordänderungen für Bunddiagramme"
30
31 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
32   texidocfr = "
33 Vous pouvez opter pour n'imprimer les diagrammes de fret qu'à l'occasion
34 d'un changement d'accord ou de saut de ligne.
35
36 "
37   doctitlefr = "Changement d'accord et diagramme de fret"
38
39
40   texidoc = "
41 FretBoards can be set to display only when the chord changes or at the
42 beginning of a new line.
43
44 "
45   doctitle = "ChordChanges for FretBoards"
46 } % begin verbatim
47
48 \include "predefined-guitar-fretboards.ly"
49
50 myChords = \chordmode {
51   c1 c1 \break
52   \set chordChanges = ##t
53   c1 c1 \break
54   c1 c1
55 }
56
57 <<
58   \new ChordNames { \myChords }
59   \new FretBoards { \myChords }
60   \new Staff { \myChords }
61 >>