]> git.donarmstrong.com Git - lilypond.git/commitdiff
new file.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 15 Feb 2003 01:18:38 +0000 (01:18 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 15 Feb 2003 01:18:38 +0000 (01:18 +0000)
ChangeLog
Documentation/bibliography/engraving.bib
input/regression/chords-funky-ignatzek.ly [new file with mode: 0644]

index 5f6277c422f740ec038092dad6de1ae3675d6868..48a2c1ea27089ffdb700439609316f15287d602f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -24,7 +24,7 @@
 
 2003-02-04  Heikki Junes  <hjunes@cc.hut.fi>
 
-       * Documentation/topdos/AUTHORS.texi: refine.
+       * Documentation/topdocs/AUTHORS.texi: refine.
 
 2003-01-25  Heikki Junes  <hjunes@cc.hut.fi>
 
index 9504529bf25bf04d94ba3eb61de5f468e7abfdd1..ee6be6ab92280cb85f6f062c24be047d97f45269 100644 (file)
@@ -16,6 +16,8 @@
   address =    {Mainz, Germany},
 }
 
+
+
 @Book{rastall,
   author =      {Richard Rastall},
   ALTeditor =   {},
   note = {Interesting account of the evolution and origin of common notation starting from neumes, and ending with modern innovations HWN},
 }
 
+
+@Book{ignatzek95:_jazzm_klavier,
+  author =      {Klaus Ignatzek},
+  title =       {Die Jazzmethode f\"ur Klavier 1},
+  publisher =   {Schott},
+  year =        1995,
+  note =        {This book contains a system for denoting chords that is used in LilyPond.}
+}
+
 @Book{mcgrain,
   author =      {Mark Mc Grain},
   title =       {Music notation},
diff --git a/input/regression/chords-funky-ignatzek.ly b/input/regression/chords-funky-ignatzek.ly
new file mode 100644 (file)
index 0000000..d585c90
--- /dev/null
@@ -0,0 +1,32 @@
+\header {
+texidoc = "Jazz chords, unusual combinations."
+}
+
+chs = \notes 
+{
+<<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
+}
+
+
+\score{
+    <
+       \context ChordNames {
+       #(set-chord-name-style 'ignatzek)
+       \chs
+    }
+       \context Staff \notes \transpose c c' { \chs }
+    >
+    \paper{
+       \translator { 
+           \ChordNamesContext
+           ChordName \override #'word-space = #1 
+       }
+    }
+}