X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-the-chord-names-to-german-or-semi-german-notation.ly;h=26e8a6e9b3ce6fdc19bdd68c303f664d6b96a4c1;hb=ee2fdacf2ff3acd7e6fb7c4005dfe698b1cc4eed;hp=bf0930396ad99c8f0149e539b7a407f91e40e1f6;hpb=c6444231d15708adc5560e2735fe980d04dd138d;p=lilypond.git diff --git a/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly b/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly index bf0930396a..26e8a6e9b3 100644 --- a/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly +++ b/Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly @@ -1,24 +1,25 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% Do not edit this file; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.13.1" +\version "2.13.16" \header { lsrtags = "chords" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: 2b0dc29608d6c3f5a03ead4877ae514c647adb74 texidoces = " -La nomenclatura inglesa (predeterminada) para los acordes del -cifrado americano se puede cambiar por la alemana -(@code{\\germanChords} sustituye B y Bes por H y B) o por la semi-alemana +La nomenclatura inglesa (predeterminada) para los acordes del cifrado +americano se puede cambiar por la alemana (@code{\\germanChords} +sustituye B y Bes por H y B) o por la semi-alemana (@code{\\semiGermanChords} sustituye B y Bes por H y Bb). " doctitlees = "Cambiar la nomenclatura de los acordes del cifrado americano por la notación alemana o semi-alemana" texidoc = " -The english naming of chords (default) can be changed to german -(@code{\\germanChords} replaces B and Bes to H and B) or semi-german -(@code{\\semiGermanChords} replaces B and Bes to H and Bb). +The english naming of chords (default) can be changed to german +(@code{\\germanChords} replaces B and Bes with H and B) or semi-german +(@code{\\semiGermanChords} replaces B and Bes with H and Bb). @@ -28,16 +29,19 @@ The english naming of chords (default) can be changed to german } % begin verbatim music = \chordmode { - c1/c cis/cis - b/b bis/bis bes/bes -} + c1/c | cis/cis + b1/b | bis/bis | bes/bes +} %% The following is only here to print the names of the %% chords styles; it can be removed if you do not need to %% print them. \layout { - \context {\ChordNames \consists Instrument_name_engraver } + \context { + \ChordNames + \consists "Instrument_name_engraver" + } } <<