]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
Doc: Update LSR.
[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.16"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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