]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-chord-names-to-german-or-semi-german-notation.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / changing-the-chord-names-to-german-or-semi-german-notation.ly
index bf0930396ad99c8f0149e539b7a407f91e40e1f6..3106b81c77bc44db2631d7cfa0c5ec2089b10fae 100644 (file)
@@ -1,24 +1,28 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.14.2"
 
 \header {
-  lsrtags = "chords"
+  lsrtags = "chords, really-simple"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
   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).
 
 
 
@@ -27,17 +31,21 @@ The english naming of chords (default) can be changed to german
   doctitle = "Changing the chord names to German or semi-German notation"
 } % 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"
+  }
 }
 
 <<