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