]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / changing-the-chord-names-to-german-or-semi-german-notation.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "chords"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13   texidoces = "
14 La nomenclatura inglesa (predeterminada) para los acordes del cifrado
15 americano se puede cambiar por la alemana (@code{\\germanChords}
16 sustituye B y Bes por H y B) o por la semi-alemana
17 (@code{\\semiGermanChords} sustituye B y Bes por H y Bb).
18
19 "
20   doctitlees = "Cambiar la nomenclatura de los acordes del cifrado americano por la notaciĆ³n alemana o semi-alemana"
21
22   texidoc = "
23 The english naming of chords (default) can be changed to german
24 (@code{\\germanChords} replaces B and Bes with H and B) or semi-german
25 (@code{\\semiGermanChords} replaces B and Bes with H and Bb).
26
27
28
29
30 "
31   doctitle = "Changing the chord names to German or semi-German notation"
32 } % begin verbatim
33
34 music = \chordmode {
35   c1/c | cis/cis
36   b1/b | bis/bis | bes/bes
37 }
38
39 %% The following is only here to print the names of the
40 %% chords styles; it can be removed if you do not need to
41 %% print them.
42
43 \layout {
44   \context {
45     \ChordNames
46     \consists "Instrument_name_engraver"
47   }
48 }
49
50 <<
51   \new ChordNames {
52     \set ChordNames.instrumentName = #"default"
53     \music
54   }
55   \new ChordNames {
56     \set ChordNames.instrumentName = #"german"
57     \germanChords \music }
58   \new ChordNames {
59     \set ChordNames.instrumentName = #"semi-german"
60     \semiGermanChords \music }
61   \context Voice { \music }
62 >>
63