LSR: Update.
[lilypond.git] / input / lsr / changing-the-chord-names-to-german-or-semi-german-notation.ly
blobfdded0f9ab52b37ab66e0c6b8e27b02702e5e792
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.53"
5 \header {
6 lsrtags = "chords"
8 texidoces = "
9 La nomenclatura inglesa (predeterminada) para los acordes del
10 cifrado americano se puede cambiar por la alemana
11 (@code{\germanChords} sustituye B y Bes por H y B) o por la semi-alemana
12 (@code{\semiGermanChords} sustituye B y Bes por H y Bb).
15 doctitlees = "Cambiar la nomenclatura de los acordes del cifrado americano por la notaciĆ³n alemana o semi-alemana"
17 texidoc = "
18 The english naming of chords (default) can be changed to german
19 (@code{\\germanChords} replaces B and Bes to H and B) or semi-german
20 (@code{\\semiGermanChords} replaces B and Bes to H and Bb).
26 doctitle = "Changing the chord names to German or semi-German notation"
27 } % begin verbatim
28 music = \chordmode {
29 c1/c cis/cis
30 b/b bis/bis bes/bes
33 %% The following is only here to print the names of the
34 %% chords styles; it can be removed if you do not need to
35 %% print them.
37 \layout {
38 \context {\ChordNames \consists Instrument_name_engraver }
42 \new ChordNames {
43 \set ChordNames.instrumentName = #"default"
44 \music
46 \new ChordNames {
47 \set ChordNames.instrumentName = #"german"
48 \germanChords \music }
49 \new ChordNames {
50 \set ChordNames.instrumentName = #"semi-german"
51 \semiGermanChords \music }
52 \context Voice { \music }