LSR: Local update.
[lilypond/mpolesky.git] / Documentation / snippets / changing-the-chord-names-to-german-or-semi-german-notation.ly
blob67108e5acf5b09cb9f4132e06ff05e53d957180f
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"
6 \header {
7 lsrtags = "chords"
9 %% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb
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).
17 doctitlees = "Cambiar la nomenclatura de los acordes del cifrado americano por la notaciĆ³n alemana o semi-alemana"
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).
28 doctitle = "Changing the chord names to German or semi-German notation"
29 } % begin verbatim
31 music = \chordmode {
32 c1/c | cis/cis
33 b1/b | bis/bis | bes/bes
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.
40 \layout {
41 \context {
42 \ChordNames
43 \consists "Instrument_name_engraver"
48 \new ChordNames {
49 \set ChordNames.instrumentName = #"default"
50 \music
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 }