EASIER:多元化.JAR方式
Multivalent.jar是一款令人惊叹的自由软件,能够在pdf上执行许多有用的任务
你可以从其中一个链接下载(sourceforge上提供的2009 multivalent.jar版本里面没有更多的pdf工具)
> http://minhateca.com.br/cixey/Documentos/Multivalent,584888318.jar(executabl
> http://ge.tt/#!/21OPDHX/v/4
>你需要知道pdf的宽度和高度(在Linux中你可以使用pdfinfo)
>假设您的多页pdf是ISO A4大小(21×29.7厘米),请键入:
java -cp path..to/Multivalent.jar tool.pdf.Impose -dim 4×1 -paper
84×29.7cm input.pdf
>结果pdf文件
http://ge.tt/98Kv4ce/v/0
解释:
-dim 4×1 means number of columns for rows
-paper 84×29.7cm means paper size of your final imposed document containing the 4 pages joined side by side. obvIoUsly,since
in your final pdf file,you will have 4 columns and only one row,you
need to multiply by 4 the document witdh (21 cm)multivalent can accept,as unity input,also inches (-paper
33.4×11.68in) or postscript points (-paper 2380x841pt)
—————–
更难的是:一种乳白色的方式:
4_pdf_pages_appended_side_by_side
几年前,comp.text.pdf中的Peter Flynn提出了类似的任务,即在LateX的唯一帮助下并排添加pdf页面的方法.如果您是LaTeXian,您可以采取以下行动:
因为你需要并排追加单页多页pdf的四页,你会写一个乳胶序言,创建一个这样的新文档:
假设您的pdf文档的名称为input.pdf且其大小为ISO A4,并且您在工作文件夹中有这个多页pdf,那么您将拥有
\documentclass[a4paper]{article}
\usepackage[margin=0mm,nohead,nofoot]{geometry}
\usepackage{pdfpages}
\pagestyle{empty}
\parindent0pt
\begin{document}
\includepdfmerge[nup=1x4,landscape]{input.pdf,1,input.pdf,2,3,4}
\end{document}