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