]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-chord-names-to-german-or-semi-german-notation.ly
Merge master into nested-bookparts
[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.62"
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 music = \chordmode {
29   c1/c cis/cis
30   b/b bis/bis bes/bes
31
32
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.
36
37 \layout {
38   \context {\ChordNames \consists Instrument_name_engraver }
39 }
40
41 <<
42   \new ChordNames {
43     \set ChordNames.instrumentName = #"default"
44     \music
45   }
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 }
53 >>