]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 30 Oct 2004 17:52:25 +0000 (17:52 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 30 Oct 2004 17:52:25 +0000 (17:52 +0000)
Documentation/user/notation.itely
input/regression/beam-quant-standard.ly
input/regression/chord-name-exceptions.ly
input/regression/font-postscript.ly

index a4a30766e69f2e17e42050de3f8ed9f2253aeb10..8936c70536bd0c4b0a6410c4aca6e038c60257fe 100644 (file)
@@ -4643,7 +4643,28 @@ following properties
 @cindex @code{chordNameExceptions}
 @item chordNameExceptions
 This is a list that contains the chords that have special formatting.
-For an example of tuning this property, see
+
+The exceptions list should be encoded as encoded as
+@verbatim
+       @{ <c f g bes>1 \markup @{ \\super \"7\" \"wahh\" @} @}
+@end verbatim
+
+To get this information into @code{chordNameExceptions} takes a little
+manoeuvring. The following code transforms @code{chExceptionMusic}
+(which is a sequential music) into a list of exceptions.
+@example
+       (sequential-music-to-chord-exceptions chExceptionMusic #t)
+@end example
+Then,
+@example
+(append
+ (sequential-music-to-chord-exceptions chExceptionMusic #t)
+ ignatzekExceptions)
+@end example
+adds the new exceptions to the default ones, which are defined in
+@file{ly/chord-modifier-init.ly}.
+
+For an example of tuning this property, see also
 @inputfileref{input/regression,chord-name-exceptions.ly}.
 @cindex exceptions, chord names.
 
index 5cd0eff91a8ef7a4fbdb14d492a589102da184a1..06f70e1738bc41ba7ee990c1a13c2719cbd6c06e 100644 (file)
@@ -1,6 +1,8 @@
 \header {
 
-    texidoc = "This file tests a few standard beam quants."
+    texidoc = "This file tests a few standard beam quants, taken from
+    Ted Ross' book. If LilyPond finds another quant, the correct quant
+    is printed over the beam."
     
 }
 
index fdcd44448522279417ca03bf98e78a53ce22d0ea..1386ea0145f13e8a9df851ff04214bf26597f3b8 100644 (file)
@@ -1,25 +1,10 @@
 \version "2.3.22"
-\header { texidoc = "The property @code{chordNameExceptions} can used
-    to store a list of special notations for specific chords.
-
-Putting the exceptions list encoded as
-@example
-       \ @{ <c f g bes>1\\markup @{ \\super \"7\" \"wahh\" @} @}
-@end example
-into @code{chordNameExceptions} takes a little manoeuvring. The
-following code transforms @code{chExceptionMusic} (which is a
-sequential music) into a list of exceptions.
-@example
-       (sequential-music-to-chord-exceptions chExceptionMusic \#t)
-@end example
-Then,
-@example
-       (append
-         ... ignatzekExceptions)
-@end example
-adds the new exceptions to the default ones, which are defined in
-@file{ly/chord-modifier-init.ly}.
-" }
+\header {
+
+    texidoc = "The property @code{chordNameExceptions} can used
+    to store a list of special notations for specific chords."
+
+}
 
 
                                % 7sus4 denoted with ^7 wahh
@@ -37,6 +22,8 @@ theMusic = \chordmode {
     c:7sus4 c:dim7/+f
 }
 
+\layout { raggedright = ##t }
+
 << \context ChordNames \theMusic
    \context Voice \theMusic
 >>  
index 539bada76d741b2aa6c11dc6e832e9a0eb8d8940..899f9f9391307483d8847a6e15d69193afd2dd89 100644 (file)
@@ -2,7 +2,10 @@
 
     texidoc = "This file demonstrates how to load different
     (postscript) fonts. The file @file{font.scm} shows how to define
-    the scheme-function @code{make-century-schoolbook-tree}."
+    the scheme-function @code{make-century-schoolbook-tree}.
+
+    This file should be run with the TeX and extra options should be
+    passed to LaTeX and dvips to help it find the uncb font."
 
 }
 \version "2.3.22"
@@ -30,8 +33,8 @@
     raggedright = ##t
 }
 
-    {
-        \key a \major
-\time 6/8
-cis''8. d''16 cis''8 e''4 e''8
-    }
+{
+    \key a \major
+    \time 6/8
+    cis''8.^"test!"  d''16 cis''8 e''4 e''8
+}