]> git.donarmstrong.com Git - lilypond.git/blobdiff - 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
index e57456cbe255777fad45aed5e5f17079916d1461..5c0b3ee35fb3bda8ed59792359e5a5531a225c51 100644 (file)
@@ -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.10"
+\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"
+  }
 }
 
 <<