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