]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly
Change stringTunings from list of semitones to list of pitches
[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.39"
5
6 \header {
7   lsrtags = "chords"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 La nomenclatura inglesa (predeterminada) para los acordes del cifrado
12 americano se puede cambiar por la alemana (@code{\\germanChords}
13 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 with H and B) or semi-german
22 (@code{\\semiGermanChords} replaces B and Bes with 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   b1/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 {
42     \ChordNames
43     \consists "Instrument_name_engraver"
44   }
45 }
46
47 <<
48   \new ChordNames {
49     \set ChordNames.instrumentName = #"default"
50     \music
51   }
52   \new ChordNames {
53     \set ChordNames.instrumentName = #"german"
54     \germanChords \music }
55   \new ChordNames {
56     \set ChordNames.instrumentName = #"semi-german"
57     \semiGermanChords \music }
58   \context Voice { \music }
59 >>
60