]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chordchanges-for-fretboards.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / chordchanges-for-fretboards.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.0
5 \version "2.13.1"
6
7 \header {
8 %% Translation of GIT committish: da7ce7d651c3a0d1bfed695f6e952975937a1c79
9   texidoces = "
10 Se puede hacer que los diagramas de posiciones se muestren sólo
11 cuando el acorde cambia o al comienzo de una nueva línea.
12
13 "
14
15   doctitlees = "Cambios de acorde de posiciones de trastes"
16
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19 texidocde = "
20 Bunddiagramme können definiert werden, sodass sie nur angezeigt werden,
21 wenn der Akkord sich ändert oder eine neue Zeile anfängt.
22
23 "
24
25   doctitlede = "Akkordänderungen für Bunddiagramme"
26
27   lsrtags = "fretted-strings"
28   texidoc = "FretBoards can be set to display only when the chord changes
29 or at the beginning of a new line."
30   doctitle = "chordChanges for FretBoards"
31 } % begin verbatim
32
33
34 \include "predefined-guitar-fretboards.ly"
35
36 myChords = \chordmode {
37   c1 c1 \break
38   \set chordChanges = ##t
39   c1 c1 \break
40   c1 c1 \break
41 }
42
43 <<
44   \new ChordNames { \myChords }
45   \new FretBoards { \myChords }
46   \new Staff { \myChords }
47 >>