]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chordchanges-for-fretboards.ly
Doc: run makelsr locally.
[lilypond.git] / Documentation / snippets / chordchanges-for-fretboards.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.14.0
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
12   texidoces = "
13 Se puede hacer que los diagramas de posiciones se muestren sólo
14 cuando el acorde cambia o al comienzo de una nueva línea.
15
16 "
17
18   doctitlees = "Cambios de acorde de posiciones de trastes"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 texidocde = "
23 Bunddiagramme können definiert werden, sodass sie nur angezeigt werden,
24 wenn der Akkord sich ändert oder eine neue Zeile anfängt.
25
26 "
27
28   doctitlede = "Akkordänderungen für Bunddiagramme"
29
30 %% Translation of GIT committish: 40bf2b38d674c43f38058494692d1a0993fad0bd
31   texidocfr = "
32 Vous pouvez opter pour n'imprimer les diagrammes de fret qu'à l'occasion
33 d'un changement d'accord ou de saut de ligne.
34
35 "
36
37   doctitlefr = "Changement d'accord et diagramme de fret"
38
39
40   lsrtags = "fretted-strings"
41   texidoc = "FretBoards can be set to display only when the chord changes
42 or at the beginning of a new line."
43   doctitle = "chordChanges for FretBoards"
44 } % begin verbatim
45
46
47 \include "predefined-guitar-fretboards.ly"
48
49 myChords = \chordmode {
50   c1 c1 \break
51   \set chordChanges = ##t
52   c1 c1 \break
53   c1 c1 \break
54 }
55
56 <<
57   \new ChordNames { \myChords }
58   \new FretBoards { \myChords }
59   \new Staff { \myChords }
60 >>