]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
b6c02e900dae839e45c2d5dbb2bd1ac15550c7ec
[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.14.0"
8
9 \header {
10 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
11   texidocfr = "
12 Vous pouvez faire ressortir les chiffrages d'accords s'ils ne sont
13 imprimés qu'aux changements d'accord ou en début de ligne.
14
15 "
16   doctitlefr = "Impression des accords si changement"
17
18   lsrtags = "chords"
19
20
21
22
23
24 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
25   texidoces = "
26 Se pueden imprimir los acordes exclusivamente al comienzo de las
27 líneas y cuando cambia el acorde.
28
29 "
30   doctitlees = "Imprimir los acordes cuando se produce un cambio"
31
32
33 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
34   texidocde = "
35 Akkordsymbole können so eingestellt werden, dass sie nur zu Beginn der Zeile
36 und bei Akkordwechseln angezeigt werden.
37
38 "
39   doctitlede = "Akkordsymbole bei Wechsel anzeigen"
40
41   texidoc = "
42 Chord names can be displayed only at the start of lines and when the
43 chord changes.
44
45 "
46   doctitle = "Showing chords at changes"
47 } % begin verbatim
48
49 harmonies = \chordmode {
50   c1:m c:m \break c:m c:m d
51 }
52 <<
53   \new ChordNames {
54     \set chordChanges = ##t
55     \harmonies
56   }
57   \new Staff {
58     \relative c' { \harmonies }
59   }
60 >>
61