]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/chordchanges-for-fretboards.ly
Modify autobeam and grouping properties
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18 texidocde = "
19 Bunddiagramme können definiert werden, sodass sie nur angezeigt werden,
20 wenn der Akkord sich ändert oder eine neue Zeile anfängt.
21
22 "
23
24   doctitlede = "Akkordänderungen für Bunddiagramme"
25
26   lsrtags = "fretted-strings"
27   texidoc = "FretBoards can be set to display only when the chord changes
28 or at the beginning of a new line."
29   doctitle = "chordChanges for FretBoards"
30 } % begin verbatim
31
32
33 \include "predefined-guitar-fretboards.ly"
34
35 myChords = \chordmode {
36   c1 c1 \break
37   \set chordChanges = ##t
38   c1 c1 \break
39   c1 c1 \break
40 }
41
42 <<
43   \new ChordNames { \myChords }
44   \new FretBoards { \myChords }
45   \new Staff { \myChords }
46 >>