]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chordchanges-for-fretboards.ly
Docs: run convert-ly for 2.14.0.
[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.13.36
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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   lsrtags = "fretted-strings"
31   texidoc = "FretBoards can be set to display only when the chord changes
32 or at the beginning of a new line."
33   doctitle = "chordChanges for FretBoards"
34 } % begin verbatim
35
36
37 \include "predefined-guitar-fretboards.ly"
38
39 myChords = \chordmode {
40   c1 c1 \break
41   \set chordChanges = ##t
42   c1 c1 \break
43   c1 c1 \break
44 }
45
46 <<
47   \new ChordNames { \myChords }
48   \new FretBoards { \myChords }
49   \new Staff { \myChords }
50 >>