]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/showing-chords-at-changes.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / showing-chords-at-changes.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 Se pueden imprimir los acordes exclusivamente al comienzo de las
12 líneas y cuando cambia el acorde.
13
14 "
15   doctitlees = "Imprimir los acordes cuando se produce un cambio"
16
17
18 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
19   texidocde = "
20 Akkordsymbole können so eingestellt werden, dass sie nur zu Beginn der Zeile
21 und bei Akkordwechseln angezeigt werden.
22
23 "
24   doctitlede = "Akkordsymbole bei Wechsel anzeigen"
25
26   texidoc = "
27 Chord names can be displayed only at the start of lines and when the
28 chord changes.
29
30 "
31   doctitle = "Showing chords at changes"
32 } % begin verbatim
33
34 harmonies = \chordmode {
35   c1:m c:m \break c:m c:m d
36 }
37 <<
38   \new ChordNames {
39     \set chordChanges = ##t
40     \harmonies
41   }
42   \new Staff {
43     \relative c' { \harmonies }
44   }
45 >>
46