]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
240b5898e0fd13607857bada189371cfe1cad61f
[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.2"
8
9 \header {
10   lsrtags = "chords"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
30   texidocfr = "
31 Vous pouvez faire ressortir les chiffrages d'accords s'ils ne sont
32 imprimés qu'aux changements d'accord ou en début de ligne.
33
34 "
35   doctitlefr = "Impression des accords si changement"
36
37   texidoc = "
38 Chord names can be displayed only at the start of lines and when the
39 chord changes.
40
41 "
42   doctitle = "Showing chords at changes"
43 } % begin verbatim
44
45
46 harmonies = \chordmode {
47   c1:m c:m \break c:m c:m d
48 }
49 <<
50   \new ChordNames {
51     \set chordChanges = ##t
52     \harmonies
53   }
54   \new Staff {
55     \relative c' { \harmonies }
56   }
57 >>
58