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



我想创建一个pdf,其中a 单页包含多个EPS(AI)文件。有可以做到的库吗?

正在生成一个带有数字的.Tex文件,然后使用latex,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}

最新更新