From: Han-Wen Nienhuys Date: Sat, 30 Oct 2004 17:52:25 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release/2.4.2~12 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=093fa2b2861a3b44efd067aec369b36fd420d00c;p=lilypond.git *** empty log message *** --- diff --git a/Documentation/user/notation.itely b/Documentation/user/notation.itely index a4a30766e6..8936c70536 100644 --- a/Documentation/user/notation.itely +++ b/Documentation/user/notation.itely @@ -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 + @{ 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. diff --git a/input/regression/beam-quant-standard.ly b/input/regression/beam-quant-standard.ly index 5cd0eff91a..06f70e1738 100644 --- a/input/regression/beam-quant-standard.ly +++ b/input/regression/beam-quant-standard.ly @@ -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." } diff --git a/input/regression/chord-name-exceptions.ly b/input/regression/chord-name-exceptions.ly index fdcd444485..1386ea0145 100644 --- a/input/regression/chord-name-exceptions.ly +++ b/input/regression/chord-name-exceptions.ly @@ -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 - \ @{ 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 >> diff --git a/input/regression/font-postscript.ly b/input/regression/font-postscript.ly index 539bada76d..899f9f9391 100644 --- a/input/regression/font-postscript.ly +++ b/input/regression/font-postscript.ly @@ -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 +}