]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
Doc: update snippet committishes.
[lilypond.git] / Documentation / snippets / showing-chords-at-changes.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.10"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: 45fc8488655f9ea122d1ec6e3328892618bd6971
10   texidoces = "
11 Se pueden imprimir los acordes exclusivamente al comienzo de las
12 líneas y cuando cambia el acorde.
13
14 "
15   doctitlees = "Imprimir los acordes cuando se produce un cambio"
16
17 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
18   texidocde = "
19 Akkordsymbole können so eingestellt werden, dass sie nur zu Beginn der Zeile
20 und bei Akkordwechseln angezeigt werden.
21
22 "
23   doctitlede = "Akkordsymbole bei Wechsel anzeigen"
24
25   texidoc = "
26 Chord names can be displayed only at the start of lines and when the
27 chord changes.
28
29 "
30   doctitle = "Showing chords at changes"
31 } % begin verbatim
32
33 harmonies = \chordmode {
34   c1:m c:m \break c:m c:m d
35 }
36 <<
37   \new ChordNames {
38     \set chordChanges = ##t
39     \harmonies
40   }
41   \new Staff {
42     \relative c' { \harmonies }
43   }
44 >>
45