]> git.donarmstrong.com Git - lilypond.git/commitdiff
Small fixes (bugs and commonprop)
authorGraham Percival <graham@percival-music.ca>
Sun, 15 Jan 2006 01:10:41 +0000 (01:10 +0000)
committerGraham Percival <graham@percival-music.ca>
Sun, 15 Jan 2006 01:10:41 +0000 (01:10 +0000)
ChangeLog
Documentation/user/advanced-notation.itely
Documentation/user/basic-notation.itely
Documentation/user/global.itely
Documentation/user/instrument-notation.itely

index bc0a39dc108b5692ee11cb7831abadbd6146d074..887ea91e57eb63dde754a516339af90a9fed1f1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-14  Graham Percival  <gpermus@gmail.com>
+
+       * Documentation/user/ basic-notation.itely, global.itely,
+       advanced-notation.itely, instrument-notation.itely: small
+       additions (bugs and commonly tweaked properties).
+
 2006-01-13  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
        * stepmake/stepmake/generic-vars.make (MINGW_BUILD): generic
index 530bbdee5ea1271b90847c41ef7434f7bdf79953..7a0813d0d99a2b6e71c0da0be4633eb673f403bd 100644 (file)
@@ -75,6 +75,15 @@ The @code{\markup} is described in more detail in
 @code{\emptyText}.
 
 
+@commonprop
+
+Checking to make sure that text scripts and lyrics are within the margins is a relatively large computational task.  To speed up processing, lilypond does not perform such calculations by default; to enable it, use
+
+@example
+\override Score.PaperColumn #'keep-inside-line = ##t
+@end example
+
+
 @seealso
 
 In this manual: @ref{Text markup}.
index a4e961ad7cdef81f584909189985f33403997d3d..473c2b0e5f95f33ea41d337be39a4c92975cb7a2 100644 (file)
@@ -438,9 +438,9 @@ typing @code{\times} only once, thus saving lots of typing.  In the next
 example, there are two triplets shown, while @code{\times} was only
 used once
 
-@lilypond[quote,fragment,relative=1,raggedright,verbatim]
+@lilypond[quote,fragment,relative=2,raggedright,verbatim]
 \set tupletSpannerDuration = #(ly:make-moment 1 4)
-\times 2/3 { c'8 c c c c c }
+\times 2/3 { c8 c c c c c }
 @end lilypond
 
 The format of the number is determined by the property
@@ -449,8 +449,13 @@ denominator, but if it is set to the Scheme function
 @code{fraction-tuplet-formatter}, @var{num}:@var{den} will be printed
 instead.
 
+To avoid printing tuplet numbers, use
 
-
+@lilypond[quote,fragment,relative=2,raggedright,verbatim]
+\times 2/3 { c8 c c } \times 2/3 { c8 c c }
+\override TupletNumber #'transparent = ##t
+\times 2/3 { c8 c c } \times 2/3 { c8 c c }
+@end lilypond
 
 
 @seealso
index 74eee9c61a91be39f430f489ef98499eedf98c96..5735fbb03cbb80438d59473aa28cf9de313240a1 100644 (file)
@@ -886,6 +886,7 @@ piece in several movements), use @code{breakbefore} in the header.
 @example
 \header@{
   breakbefore = ##t
+  piece = ""
 @}
 @end example
 
@@ -897,6 +898,12 @@ piece in several movements), use @code{breakbefore} in the header.
 @code{\noPageBreak} 
 
 
+@bugs
+
+The @code{breakbefore=##t} header requires that there is a @code{piece} header as well.  It may be used as a normal header, or left  blank (@code{=""}) as in the example above, but it must be present.
+
+
+
 @node Multiple movements
 @subsection Multiple movements
 
@@ -1186,6 +1193,11 @@ composer flush right on a single line.
 @end verbatim
 
 
+@bugs
+
+The @code{breakbefore=##t} header requires that there is a @code{piece} header as well.  It may be used as a normal header, or left  blank (@code{=""}) as in the example above, but it must be present.
+
+
 
 @node Sound output
 @section Sound output
index f33aa418146af73a0fadbbe5a7a3b4b2b2eab93f..d32e080e3526f61df8075f140a2b1923268c2f27 100644 (file)
@@ -709,6 +709,16 @@ for complex vocal music.
 * Other vocal issues::          
 @end menu
 
+
+@commonprop
+
+Checking to make sure that text scripts and lyrics are within the margins is a relatively large computational task.  To speed up processing, lilypond does not perform such calculations by default; to enable it, use
+
+@example
+\override Score.PaperColumn #'keep-inside-line = ##t 
+@end example
+
+
 @node Setting simple songs
 @subsection Setting simple songs