1 \chapter{Module epsfile: EPS file inclusion
}
3 With the help of the
\verb|epsfile.epsfile| class, you can easily embed
4 another EPS file in your canvas, thereby scaling, aligning the content
5 at discretion. The most simple example looks like
10 c.insert(epsfile.epsfile(
0,
0, "file.eps"))
11 c.writeEPSfile("output")
15 All relevant parameters are passed to the
\verb|epsfile.epsfile|
16 constructor. They are summarized in the following table:
19 \begin{tabularx
}{\linewidth}{l>
{\raggedright\arraybackslash}X
}
20 argument name&description\\
22 \texttt{x
} & $x$-coordinate of position.\\
23 \texttt{y
} & $y$-coordinate of position.\\
24 \texttt{filename
} & Name of the EPS file (including a possible
26 \texttt{width=None
} & Desired width of EPS graphics or
\texttt{None
}
27 for original width. Cannot be combined with scale specification.\\
28 \texttt{height=None
} & Desired height of EPS graphics or
\texttt{None
}
29 for original height. Cannot be combined with scale specification.\\
30 \texttt{scale=None
} & Scaling factor for EPS graphics or
\texttt{None
}
31 for no scaling. Cannot be combined with width or height specification.\\
32 \texttt{align="bl"
} & Alignment of EPS graphics. The first character
33 specifies the vertical alignment:
\texttt{b
} for bottom,
\texttt{c
}
34 for center, and
\texttt{t
} for top. The second character fixes the
35 horizontal alignment:
\texttt{l
} for left,
\texttt{c
} for center
36 \texttt{r
} for right.\\
37 \texttt{clip=
1} & Clip to bounding box of EPS file?\\
38 \texttt{translatebbox=
1} & Use lower left corner of bounding box of EPS
39 file? Set to $
0$ with care.\\
40 \texttt{bbox=None
} & If given, use
\texttt{bbox
} instance instead of
41 bounding box of EPS file.\\
42 \texttt{kpsearch=
0} & Search for file using the kpathsea library.
51 %%% TeX-master: "manual.tex"