[comp.lang.postscript] multi.ps bug?

mojo@reed.UUCP (a cadaverous olive) (02/27/90)

Multi.ps (which is a fine thing---THANK YOU!) seems to not print a page if it
cannot fill it entirely; i.e., at 2 pages per sheet, it will only print an
even number of pages; the last sheet never appears, and the printer resets
itself.

Is this a bug, or am I failing to do something right?

Also: is there a way to use \special in LaTeX to force multi.ps to be included
_before_ TeXDict?

Adthanksvance

--
/^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\
| It's worse than that,  {      Nathan Tenny      }  Acme Hedgehog Inserters  |
| it's physics, Jim!     { ...tektronix!reed!mojo }  Implementation Director  |
\^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^/
-- 
/^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\
| It's worse than that,  {      Nathan Tenny      }  Acme Hedgehog Inserters  |
| it's physics, Jim!     { ...tektronix!reed!mojo }  Implementation Director  |
\^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^/

lambert@cheops.eecs.unsw.oz (Timothy Lambert) (03/21/90)

In article <14280@reed.UUCP> mojo@reed.UUCP (a cadaverous olive) writes:

   Also: is there a way to use \special in LaTeX to force multi.ps to
   be included _before_ TeXDict?

This depends on your dvi to postscript program.  With the one I use
(Tom Rokicki's dvips) you can say "-h file" to include a header file.

However, are you sure you want to do this?  All the 300 dpi bitmapped
fonts that dvips downloads will be scaled to a smaller size.  This
will be slow and look bad.  Better to do the multiple logical pages
per physical pages within LaTeX by modifying the \output macro and
using \mag to make things smaller.

I usually put 2 A5 pages on an A4 sheet like this:

% twoup.sty
% set width and height for two column A4 page in landscape mode
\twocolumn
\flushbottom
\textwidth 700pt
\textheight 430pt
\columnsep 36pt
\hoffset=-28mm
\voffset=-20mm
\special{landscape} %this only works if your dvips understands it

Tim