]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-chord-names-to-german-or-semi-german-notation.ly
LSR: Update.
[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.11.66"
4
5 \header {
6   lsrtags = "chords"
7
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).
13
14 "
15   doctitlees = "Cambiar la nomenclatura de los acordes del cifrado americano por la notaciĆ³n alemana o semi-alemana"
16
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).
21
22
23
24
25 "
26   doctitle = "Changing the chord names to German or semi-German notation"
27 } % begin verbatim
28
29 music = \chordmode {
30   c1/c cis/cis
31   b/b bis/bis bes/bes
32
33
34 %% The following is only here to print the names of the
35 %% chords styles; it can be removed if you do not need to
36 %% print them.
37
38 \layout {
39   \context {\ChordNames \consists Instrument_name_engraver }
40 }
41
42 <<
43   \new ChordNames {
44     \set ChordNames.instrumentName = #"default"
45     \music
46   }
47   \new ChordNames {
48     \set ChordNames.instrumentName = #"german"
49     \germanChords \music }
50   \new ChordNames {
51     \set ChordNames.instrumentName = #"semi-german"
52     \semiGermanChords \music }
53   \context Voice { \music }
54 >>