]> git.donarmstrong.com Git - lilypond.git/commitdiff
(header): kludge: hard code linewidth.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 26 May 2004 13:21:55 +0000 (13:21 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 26 May 2004 13:21:55 +0000 (13:21 +0000)
ChangeLog
scm/output-tex.scm
scripts/lilypond.py

index 1abfdfc38a128091b646d2cfc0c2c3b4c760a2ad..99082be3b440b1b8b8a2a22b7e86e2ffaf60f0d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2004-05-26  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
+       * scm/output-tex.scm (header): kludge: hard code linewidth. 
+
        * lily/my-lily-parser.cc (My_lily_parser): don't delete lexer.
 
 2004-05-25  Han-Wen Nienhuys   <hanwen@xs4all.nl>
index dbc8a67b6739722d4036beb02689b4b0ca57209d..e44ab4c31688f8359e44c341b91fa33e6e277d88 100644 (file)
        "")
    ;; FIXME: duplicated in every backend
    "\\def\\lilypondtagline{Engraved by LilyPond (version "
-   (lilypond-version)")}\n"))
+   (lilypond-version)")}\n"
+
+   ;; FIXME
+   ;; this is -of course- severely broken, (--hwn)
+   (tex-string-def  "lilypondpaper" 'linewidth
+                   "18cm")
+   ))
 
 (define (output-tex-string s)
    (if (ly:get-option 'safe)
index 2a45a682d40bc063a36ec827e6c1f177aee56c90..9e0e160ef11cd9c88c541d89d87ce086699cffde 100644 (file)
@@ -486,7 +486,7 @@ def run_dvips (outbase, extra):
 leaving a PS file in OUTBASE.ps
 '''
        #FIXME: papersize, orientation must come from lilypond-bin
-
+       opts = ''
        if extra['papersize']:
                opts = ' -t%s' % extra['papersize'][0]