如何将多个EPS文件放在PDF的单个页面上?

时间:2012-10-25 14:04:21

标签: python pdf-generation eps

我想创建一个PDF,其中单页包含多个EPS(AI)文件。有没有可以做到这一点的图书馆?

1 个答案:

答案 0 :(得分:2)

使用the figures included生成一个.tex文件,然后使用带有subprocess module的乳胶dvipdf进行编译吗?

好处是你可以使用强大的tex格式将它放在你想要的任何地方等等。

乳胶文件不需要非常复杂:

\documentclass[12pt,notitlepage]{report}
\pagestyle{plain}

\usepackage[top=30mm, bottom=30mm, paperwidth=170mm, paperheight=220mm]{geometry}
\usepackage[dvips]{graphicx}

\begin{document}

\centering
\includegraphics[height=60mm]{myfig.eps}

\vspace{10mm}

\includegraphics[height=60mm]{myfig.eps}

\end{document}