]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-chord-names-to-german-or-semi-german-notation.ly
6c13889962226819e127340b0cc02590c6188f72
[lilypond.git] / input / lsr / changing-the-chord-names-to-german-or-semi-german-notation.ly
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.13.1"
4
5 \header {
6   lsrtags = "chords"
7
8 %% Translation of GIT committish: 7e2910d2bc6167b10cfe328eb17a5f710f2a515a
9   texidoces = "
10 La nomenclatura inglesa (predeterminada) para los acordes del
11 cifrado americano se puede cambiar por la alemana
12 (@code{\\germanChords} sustituye B y Bes por H y B) o por la semi-alemana
13 (@code{\\semiGermanChords} sustituye B y Bes por H y Bb).
14
15 "
16   doctitlees = "Cambiar la nomenclatura de los acordes del cifrado americano por la notaciĆ³n alemana o semi-alemana"
17
18   texidoc = "
19 The english naming of chords (default) can be changed to german 
20 (@code{\\germanChords} replaces B and Bes to H and B) or semi-german 
21 (@code{\\semiGermanChords} replaces B and Bes to H and Bb).
22
23
24
25
26 "
27   doctitle = "Changing the chord names to German or semi-German notation"
28 } % begin verbatim
29
30 music = \chordmode {
31   c1/c cis/cis
32   b/b bis/bis bes/bes
33
34
35 %% The following is only here to print the names of the
36 %% chords styles; it can be removed if you do not need to
37 %% print them.
38
39 \layout {
40   \context {\ChordNames \consists Instrument_name_engraver }
41 }
42
43 <<
44   \new ChordNames {
45     \set ChordNames.instrumentName = #"default"
46     \music
47   }
48   \new ChordNames {
49     \set ChordNames.instrumentName = #"german"
50     \germanChords \music }
51   \new ChordNames {
52     \set ChordNames.instrumentName = #"semi-german"
53     \semiGermanChords \music }
54   \context Voice { \music }
55 >>
56