]> git.donarmstrong.com Git - lilypond.git/commitdiff
Minor editing.
authorGraham Percival <graham@percival-music.ca>
Thu, 6 Jan 2005 22:46:16 +0000 (22:46 +0000)
committerGraham Percival <graham@percival-music.ca>
Thu, 6 Jan 2005 22:46:16 +0000 (22:46 +0000)
ChangeLog
Documentation/user/changing-defaults.itely
Documentation/user/notation.itely
THANKS
scm/define-context-properties.scm

index 08ef3b6f8f7e7767bb21d4e2750b8f59d28aef11..c9aaaa7002419bf6ba87d023d2e5d25beadf1ee3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2005-01-06  Graham Percival  <gperlist@shaw.ca>
+
+       * Documentation/user/notation.itely: minor editing.
+
+       * Documentation/user/changing-defaults: minor editing.
+
+       * Documentation/user/examples.itely: add template for
+       string quartet part extraction; demonstrates tag.
+
+2005-01-06  Erlend Aasland  <erlenda@gmail.com>
+
+       * Documentation/user/notation.itely: documents
+       format-mark-box-letters and format-mark-box-numbers
+
+       * scm/define-context-properties.scm: change comment.
+
 2005-01-06  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * scm/framework-ps.scm (output-classic-framework): new function:
index 1f275d1032a257b3438fcd996c17f1375344853f..5e47aae1a575211b1c022f246f6c5da8dbdd9640 100644 (file)
@@ -2015,10 +2015,11 @@ more systems onto one page.
 Normally staves are stacked vertically.  To make staves maintain a
 distance, their vertical size is padded.  This is done with the
 property @code{minimumVerticalExtent}.  It takes a pair of numbers, so
-if you want to make it smaller than its default, then you could set
+if you want to make it smaller than its default @code{#'(-4 . 4)},
+then you could set
 
 @example
-\set Staff.minimumVerticalExtent = #'(-4 . 4)
+\set Staff.minimumVerticalExtent = #'(-3 . 3)
 @end example
 
 @noindent
index 402403c83c4a329d1c443d47eb1e95a41d4577b7..1db5387afc8632e2eaa98ad848e904545030c4c0 100644 (file)
@@ -997,7 +997,7 @@ example,
 
 This command is equivalent to setting @code{clefGlyph},
 @code{clefPosition} (which controls the Y position of the clef),
-@code{centralCPosition} and @code{clefOctavation}.  A clef is printed
+@code{middleCPosition} and @code{clefOctavation}.  A clef is printed
 when any of these properties are changed.  The following example shows
 possibilities when setting properties manually.
 
@@ -5071,8 +5071,6 @@ c1 \mark \default
 @c umm, is the manual the right place for feature requests?  :)  -gp
 @c FIXME - should make that tunable.
 
-To use boxed bar numbers instead of letters, see @ref{Bar numbers}.
-
 The mark is incremented automatically if you use @code{\mark
 \default}, but you can also use an integer argument to set the mark
 manually.  The value to use is stored in the property
@@ -5088,19 +5086,16 @@ few measures, it is set to function that produces a boxed number.
 \set Score.markFormatter = #format-mark-numbers
 c1 \mark \default
 c1 \mark \default
-\set Score.markFormatter
-   = #(lambda (mark context)
-       (make-bold-markup
-        (make-box-markup (number->string mark))))
+\set Score.markFormatter = #format-mark-box-numbers
 c1 \mark \default
 c1 \mark \default
 c1
 @end lilypond
 
 The file @file{scm/@/translation@/-functions@/.scm} contains the definitions
-of @code{format-mark-numbers} (the default format) and
-@code{format-mark-letters}.  These can be used as inspiration for other
-formatting functions.
+of @code{format-mark-numbers} (the default format), @code{format-mark-box-numbers},
+@code{format-mark-letters} and @code{format-mark-box-letters}.
+These can be used as inspiration for other formatting functions.
 
 
 @cindex coda on bar line
diff --git a/THANKS b/THANKS
index c0d3c6986e228cfb40d7bb408627b3ae5a3e3994..b8e6e4b33cd41d45d86d257c45f4adceab0d1c22 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -11,6 +11,7 @@ Graham Percival   - Documentation Editor
 
 CONTRIBUTORS
 
+Erlend Aasland
 Arno Waschk
 Carl Sorensen
 Heikki Junes
@@ -25,7 +26,6 @@ Jonathan Walther
 
 BUG HUNTERS/SUGGESTIONS
 
-Erlend Aasland
 Johannes Schindelin
 Andreas Scherer
 Arjan Bos
index 6cb8ecc3bbb216bccd3e1bc274b3ad82975fd3dd..f21effe9ddff6a8781361abd60e2cd0c3fd3cb8f 100644 (file)
@@ -1,4 +1,4 @@
-;;;; translator-property-description.scm -- part of backend documentation
+;;;; define-context-properties.scm -- part of backend documentation
 ;;;;
 ;;;;  source file of the GNU LilyPond music typesetter
 ;;;;