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=5c0b3ee35fb3bda8ed59792359e5a5531a225c51;hb=17f11c2f5ab963bfb07b7652b4860dc4dda5540a;hp=869a5e0c845917791e98a282e72f3d5c6217a7f5;hpb=71243e9548e9146da4a90e6347dbca6430346be8;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 869a5e0c84..5c0b3ee35f 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,16 +1,16 @@ %% 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.4" +\version "2.13.39" \header { lsrtags = "chords" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00 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). " @@ -18,8 +18,8 @@ cifrado americano se puede cambiar por la 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). +(@code{\\germanChords} replaces B and Bes with H and B) or semi-german +(@code{\\semiGermanChords} replaces B and Bes with H and Bb). @@ -29,8 +29,8 @@ 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 @@ -38,7 +38,10 @@ music = \chordmode { %% print them. \layout { - \context {\ChordNames \consists Instrument_name_engraver } + \context { + \ChordNames + \consists "Instrument_name_engraver" + } } <<