]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/chord-names-german.ly
(fill_pages): New method. Try to cramp or
[lilypond.git] / input / test / chord-names-german.ly
index 6bc5ed623cb40af9797997a367570f6554e4ae3e..4a4ae98ac29e613419c24c06885338ffed7d0e94 100644 (file)
@@ -1,13 +1,9 @@
-\version "1.9.4"
+\version "2.1.30"
 \header  {
     texidoc = "@cindex Chord Names German
-By setting @code{ChordNames.chordRootNamer}, the root
-of the chord may be named with a different function.
-
-Setting @code{\germanChords} gives true german chord-names,
-@code{\semiGermanChords} gives semi-german chord-names - - with Bb and
-keeping the english names.
-
+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).
 
 " }
 
@@ -23,14 +19,14 @@ scm = \chords {
 \notes <<
     \context ChordNames { \scm }
     \new ChordNames {
-       \property ChordNames.instrument = #"german"
+       \set instrument = #"german"
        \germanChords \scm }
     \new ChordNames {
-       \property ChordNames.instrument =#"semi-german"
+       \set instrument = #"semi-german"
        \semiGermanChords \scm }
     \context Voice {  \scm } >>
 \paper {
     raggedright = ##t 
-    \translator {\ChordNamesContext \consists Instrument_name_engraver }}
+    \context {\ChordNamesContext \consists Instrument_name_engraver }}
 
 }