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