]> 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 3be2973bc086bb30cc0b020512bf7b207c8b26d3..5c0b3ee35fb3bda8ed59792359e5a5531a225c51 100644 (file)
@@ -1,25 +1,25 @@
 %% 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).
 
 "
   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).
 
 
 
@@ -29,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"
+  }
 }
 
 <<