]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
Update to LSR with local copy
[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
25
26 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
27   texidoces = "
28 Se pueden imprimir los acordes exclusivamente al comienzo de las
29 líneas y cuando cambia el acorde.
30
31 "
32   doctitlees = "Imprimir los acordes cuando se produce un cambio"
33
34
35 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
36   texidocde = "
37 Akkordsymbole können so eingestellt werden, dass sie nur zu Beginn der Zeile
38 und bei Akkordwechseln angezeigt werden.
39
40 "
41   doctitlede = "Akkordsymbole bei Wechsel anzeigen"
42
43   texidoc = "
44 Chord names can be displayed only at the start of lines and when the
45 chord changes.
46
47 "
48   doctitle = "Showing chords at changes"
49 } % begin verbatim
50
51 harmonies = \chordmode {
52   c1:m c:m \break c:m c:m d
53 }
54 <<
55   \new ChordNames {
56     \set chordChanges = ##t
57     \harmonies
58   }
59   \new Staff {
60     \relative c' { \harmonies }
61   }
62 >>
63