]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/chords-funky-ignatzek.ly
* input/regression/markup-syntax.ly: remove \score.
[lilypond.git] / input / regression / chords-funky-ignatzek.ly
index d585c906657a27b1f532ba6a69e11340c9f8ec36..a19a7766249d2529665c7b1b1fc090aa0c024e58 100644 (file)
@@ -1,32 +1,30 @@
+\version "2.4.0"
+
+
 \header {
-texidoc = "Jazz chords, unusual combinations."
+texidoc = "Jazz chords may have unusual combinations."
 }
 
-chs = \notes 
+chs =  
 {
-<<c d  f g>>1
-<<c d  e f g>>1
-<<c d  e  g>>1
-<<c d es  g as>>1
-<<c d e f g bes d' f'>>1
-<<c d e f g bes c'  d' e'>>1
-<<c e g bes c'  d' e'>>1
-<<c e g a bes>>1
+<c d  f g>1
+<c d  e f g>1
+<c d  e  g>1
+<c d es  g as>1
+<c d e f g bes d' f'>1
+<c d e f g bes c'  d' e'>1
+<c e g bes c'  d' e'>1
+<c e g a bes>1
+<c e g a d'>1
 }
 
 
 \score{
-    <
+    <<
        \context ChordNames {
-       #(set-chord-name-style 'ignatzek)
+%      #(set-chord-name-style 'ignatzek)
        \chs
     }
-       \context Staff \notes \transpose c c' { \chs }
-    >
-    \paper{
-       \translator { 
-           \ChordNamesContext
-           ChordName \override #'word-space = #1 
-       }
-    }
+       \context Staff  \transpose c c' { \chs }
+    >>
 }