]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly
Doc: run makelsr locally
[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.2"
8
9 \header {
10   lsrtags = "chords, really-simple"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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
35 music = \chordmode {
36   c1/c | cis/cis
37   b1/b | bis/bis | bes/bes
38 }
39
40 %% The following is only here to print the names of the
41 %% chords styles; it can be removed if you do not need to
42 %% print them.
43
44 \layout {
45   \context {
46     \ChordNames
47     \consists "Instrument_name_engraver"
48   }
49 }
50
51 <<
52   \new ChordNames {
53     \set ChordNames.instrumentName = #"default"
54     \music
55   }
56   \new ChordNames {
57     \set ChordNames.instrumentName = #"german"
58     \germanChords \music }
59   \new ChordNames {
60     \set ChordNames.instrumentName = #"semi-german"
61     \semiGermanChords \music }
62   \context Voice { \music }
63 >>
64