From: matsb Date: Wed, 31 Aug 2005 13:20:23 +0000 (+0000) Subject: * scm/framework-eps.scm (dump-stencils-as-EPSes): Insert a X-Git-Tag: release/2.7.16^2~191 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f259772468ea0b5ca35b0b6bd65f62fc3291c1d1;p=lilypond.git * scm/framework-eps.scm (dump-stencils-as-EPSes): Insert a \linebreak between each .eps file if \betweenLilyPondSystem is undefined. * Documentation/user/lilypond-book.itely (Integrating LaTeX and music): Document the \linebreak! --- diff --git a/ChangeLog b/ChangeLog index e2a9dc1696..df464809e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2005-08-31 Mats Bengtsson + * scm/framework-eps.scm (dump-stencils-as-EPSes): Insert a + \linebreak between each .eps file if \betweenLilyPondSystem is + undefined. + + * Documentation/user/lilypond-book.itely (Integrating LaTeX and + music): Document the \linebreak! + * Documentation/user/lilypond-book.itely, input/tutorial/lbook-latex-test.tex, Documentation/user/examples.itely: Remove \usepackage{graphics} diff --git a/Documentation/user/lilypond-book.itely b/Documentation/user/lilypond-book.itely index a97ead0f43..209b02733b 100644 --- a/Documentation/user/lilypond-book.itely +++ b/Documentation/user/lilypond-book.itely @@ -246,7 +246,7 @@ the user: @code{lilypond-book} has split the snippet into several postscript files. It must be defined as taking one parameter and will be passed the number of files already included in this snippet. - +The default is to simply insert a @code{\linebreak}. @ignore Broken stuff. :( diff --git a/scm/framework-eps.scm b/scm/framework-eps.scm index 29d4df46b2..efc269e83b 100644 --- a/scm/framework-eps.scm +++ b/scm/framework-eps.scm @@ -50,7 +50,7 @@ (if (< 0 c) (begin (display "\\ifx\\betweenLilyPondSystem \\undefined\n" tex-system-port) - (display " \\relax\n" tex-system-port) + (display " \\linebreak\n" tex-system-port) (display "\\else\n" tex-system-port) (display (format " \\betweenLilyPondSystem{~a}\n" c) tex-system-port)