Usually, you will want to scale an EPSF figure to some size appropriate for your document, since its natural size is determined by the creator of the EPS file.
The best way to do this is to assign the desired size to the TeX
\epsfxsize
or \epsfysize
variables, whichever is more
convenient for you. That is, put
\epsfxsize=dimen
right before the call to \epsffile
. Then the width of the TeX
box will be dimen and its height will be scaled proportionately.
Similarly, you can set the vertical size with
\epsfysize=dimen
in which case the height will be set and the width scaled proportionally.
If you set both, both will be honored, but the aspect ratio of the included graphic may necessarily be distorted, i.e., its contents stretched in one direction or the other.
You can resize graphics in a more general way by redefining the
\epsfsize
macro. \epsffile
calls this with two
parameters: the natural horizontal and vertical sizes of the PostScript
graphic. \epsfsize
must expand to the desired horizontal size,
that is, the width of the \vbox
. Schematically:
\def\epsfsize#1#2{body}
Some useful definitions of body:
\epsfxsize
to the same value it had before the macro
was called.
\hsize
. (In LaTeX, use \textwidth
instead of \hsize
.)
\hsize
, scale to
\hsize
, otherwise use the natural width.
For compatibility with other PostScript drivers, it is possible to turn off the default scaling of included figures by the DVI magnification with the following TeX command:
\special{! /magscale false def}
Use of this command is not recommended because it will make the
\epsffile
graphics the "wrong" size if global magnification is
being used, and it will cause any PostScript graphics to appear
improperly scaled and out of position if a DVI to DVI program is used to
scale or otherwise modify the document.
DVI magnification is not applied to any output from code you write in `bop-hook' or its ilk (see section PostScript hooks),
Go to the first, previous, next, last section, table of contents.