]> git.donarmstrong.com Git - lilypond.git/commitdiff
Various small fixes.
authorGraham Percival <graham@percival-music.ca>
Sat, 22 Jan 2005 02:33:43 +0000 (02:33 +0000)
committerGraham Percival <graham@percival-music.ca>
Sat, 22 Jan 2005 02:33:43 +0000 (02:33 +0000)
ChangeLog
Documentation/user/changing-defaults.itely
Documentation/user/lilypond.tely
Documentation/user/music-glossary.tely
Documentation/user/notation.itely

index 6039ff40980ea62753c21804b53b2648d943a915..34870b3f75d48f36c8e472388b2636c0d33b0fa0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2005-01-22  Graham Percival  <gperlist@shaw.ca>
+
+       * Documentation/user/changing-defaults: removed info about
+       copyright symbol, since it's likely to change soon.
+       Added info about betweensystemspace.
+
+       * Documentation/user/notation.itely: minor fixes.
+
+       * Documentation/user/lilypond.tely,
+       Documentation/user/music-glossary.tely: changed copyright
+       date to 2005 instead of 2004.
+
 2005-01-22  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * mf/feta-beugel.mf: use design size 20 (not 15).
index 2b77005e1c8b68d9272c6789f6c71e16eb3bbb95..90158ecbd1f4db56023e4e10e1cdc64607365e27 100644 (file)
@@ -1677,8 +1677,8 @@ titles.
 * Setting global staff size::   
 * Paper size::                  
 * Page layout::                 
-* Vertical spacing of piano staves::  
 * Vertical spacing::            
+* Vertical spacing of piano staves::  
 * Horizontal spacing::          
 * Line length::                 
 * Line breaking::               
@@ -1935,14 +1935,6 @@ tagline is ``Engraved by LilyPond (@var{version})''.@footnote{Nicely
 printed parts are good PR for us, so please leave the tagline if you
 can.}
 
-To print a copyright symbol, use @code{\copyright}
-
-@example
-\header @{
-  copyright = "\copyright Your Name 2005"
-@}
-@end example
-
 The header and footer are created by the functions @code{make-footer}
 and @code{make-header}, defined in @code{\paper}.  The default
 implementations are in @file{scm/@/page@/-layout@/.scm}.
@@ -1973,6 +1965,63 @@ The default page header puts the page number and the @code{instrument}
 field from the @code{\header} block on a line.
 
 
+@node Vertical spacing
+@subsection Vertical spacing
+
+@cindex vertical spacing
+@cindex distance between staves
+@cindex staff distance
+@cindex between staves, distance
+@cindex staves per page
+@cindex space between staves
+
+The height of each system is determined automatically.  To prevent
+systems from bumping into each other, some minimum distances are set.
+By changing these, you can put staves closer together, and thus put
+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 @code{#'(-4 . 4)},
+then you could set
+
+@example
+\set Staff.minimumVerticalExtent = #'(-3 . 3)
+@end example
+
+@noindent
+This sets the vertical size of the current staff to 4 staff spaces on
+either side of the center staff line.  The argument of
+@code{minimumVerticalExtent} is interpreted as an interval, where the
+center line is the 0, so the first number is generally negative.  The
+staff can be made larger at the bottom by setting it to @code{(-6 . 4)}. 
+
+To change the amount of space between systems, use
+@code{betweensystemspace}.  A score with only one staff is still
+considered to have systems, so setting @code{betweensystemspace}
+will be much more useful than changing @code{minimumVerticalExtent}.
+
+@example
+\layout @{
+  betweensystemspace = 10\mm
+@}
+@end example
+
+
+@seealso
+
+Internals: Vertical alignment of staves is handled by the
+@internalsref{VerticalAlignment} object.
+
+@refbugs
+
+@code{minimumVerticalExtent} is syntactic sugar for setting
+@code{minimum-Y-extent} of the @internalsref{VerticalAxisGroup} of the
+current context.  It can only be changed score wide.
+
+
+
 
 @node Vertical spacing of piano staves
 @subsection Vertical spacing of piano staves
@@ -2021,51 +2070,6 @@ The difference is demonstrated in the following example,
 
 @code{forced-distance} cannot be changed per system.
 
-@node Vertical spacing
-@subsection Vertical spacing
-
-@cindex vertical spacing
-@cindex distance between staves
-@cindex staff distance
-@cindex between staves, distance
-@cindex staves per page
-@cindex space between staves
-
-The height of each system is determined automatically.  To prevent
-systems from bumping into each other, some minimum distances are set.
-By changing these, you can put staves closer together, and thus put
-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 @code{#'(-4 . 4)},
-then you could set
-
-@example
-\set Staff.minimumVerticalExtent = #'(-3 . 3)
-@end example
-
-@noindent
-This sets the vertical size of the current staff to 4 staff spaces on
-either side of the center staff line.  The argument of
-@code{minimumVerticalExtent} is interpreted as an interval, where the
-center line is the 0, so the first number is generally negative.  The
-staff can be made larger at the bottom by setting it to @code{(-6 . 4)}. 
-
-
-@seealso
-
-Internals: Vertical alignment of staves is handled by the
-@internalsref{VerticalAlignment} object.
-
-@refbugs
-
-@code{minimumVerticalExtent} is syntactic sugar for setting
-@code{minimum-Y-extent} of the @internalsref{VerticalAxisGroup} of the
-current context.  It can only be changed score wide.
-
-
 
 @node Horizontal spacing
 @subsection Horizontal Spacing
index f9f656f4a51313c960554c42a4c52544e50cc16a..3493f254b41a57af07aed9353b26abf6f0e13256 100644 (file)
@@ -184,7 +184,7 @@ PostScript} and @uref{../lilypond.pdf,PDF}.
 
 
 
-Copyright @copyright{} 1999--2004 by the authors
+Copyright @copyright{} 1999--2005 by the authors
 
   Permission is granted to copy, distribute and/or modify this document
   under the terms of the GNU Free Documentation License, Version 1.1
@@ -219,7 +219,7 @@ Copyright @copyright{} 1999--2004 by the authors
 @ifnottex
 This file documents GNU LilyPond.
 
-Copyright 1999--2004 by the authors
+Copyright 1999--2005 by the authors
 
   Permission is granted to copy, distribute and/or modify this document
   under the terms of the GNU Free Documentation License, Version 1.1
index 2a562f63dbb53675ef428d33255dff8b6cf666b8..1d7fb07a7aaecc7a42c072d39130a119e25604df 100644 (file)
@@ -31,7 +31,7 @@ PostScript} and @uref{music-glossary.pdf,PDF}.
 @c Fixes by Jean-Pierre Coulon and `Dirk'
 
 
-Copyright @copyright{} 1999--2004 by the authors
+Copyright @copyright{} 1999--2005 by the authors
 
 
   Permission is granted to copy, distribute and/or modify this document
@@ -83,7 +83,7 @@ English glossary translations,
 Finnish glossary translations.
 @end table
 @*
-Copyright 1999--2004 by the authors
+Copyright 1999--2005 by the authors
 
 
   Permission is granted to copy, distribute and/or modify this document
index 71ec568ee2c0849c1002e50e31f00548ecbf27d5..cb89c4369938dba274da7e4c5ad65b2fae93c80a 100644 (file)
@@ -1371,15 +1371,17 @@ indefinitely.
 Timing can be changed by setting any of these variables explicitly.
 In the next example, the 4/4 time signature is printed, but
 @code{measureLength} is set to 5/4.  After a while, the measure is
-shortened by 1/8, by setting @code{measurePosition} to -3/8 at 2/4 in
-the measure, so the next bar line will fall at 2/4 + 3/8.
+shortened by 1/8, by setting @code{measurePosition} to 7/8 at 2/4
+in the measure, so the next bar line will fall at 2/4 + 3/8.  The
+3/8 arises because 5/4 normally has 10/8, but we have manually
+set the measure position to be 7/8 and 10/8 - 7/8 = 3/8.
 
 @lilypond[quote,raggedright,verbatim,relative,fragment]
 \set Score.measureLength = #(ly:make-moment 5 4)
 c1 c4
 c1 c4
 c4 c4
-\set Score.measurePosition = #(ly:make-moment -3 8)
+\set Score.measurePosition = #(ly:make-moment 7 8)
 b8 b b
 c4 c1
 @end lilypond
@@ -1388,8 +1390,8 @@ c4 c1
 @node Controlling formatting of prefatory matter
 @subsection Controlling formatting of prefatory matter
 
-@c  This section will be moved to somewhere else soon.
-This example demonstrates how to place prefactory matter
+@c  This section will be moved to somewhere else soon. -gp
+This example demonstrates how to place prefatory matter
 (such as the clef and key signature) at the end of a line.
 
 @lilypond[quote,verbatim]