vote up 2 vote down star
1

I have several A4 PDF documents which I would like (two into one) "glue" together into A3 format PDF document. So I will get from 2PDFs A4 a single one sided PDF A3. I have found the excellent utility PDFToolkit and some others but none of them can be used to "glue" side by side two documents.

flag

4 Answers

vote up 1 vote down

On the Postscript side, a tool named pstops is able to rearrange pages of a Postscript file in any way you could imagine. I've not heard of such a tool for PDF. But pdf2ps and ps2pdf exist. So a not-so-ideal solution may be a combination of pdf2ps, pstops and ps2pdf.

link|flag
vote up 1 vote down

I would combine the two A4 pages into one 2-page PDF using pdftk. Then Print to PDF using something like PrimoPDF, and tell it to print to A3 format, two pages per side.

I just tested this printing some slides from PowerPoint. It worked great. I selected A3 as my paper size in PowerPoint, and then chose to print 2 pages per side. Printed to Primo and voila, I have two A4 slides per A3.

link|flag
I also thought about such solution, will test if the quality is good enought for comercial magazine print. – Drejc Jan 21 at 14:12
The only problem that comes with this solution is a black line between the two joined sheets. Is there a way to remove this later on? – Drejc Jan 21 at 14:57
You can get rid of the lines by using adobe reader to print, setting 2 pages per sheet in adobe reader print settings, and setting page size to A3 in the PDF printer settings. – danio Jan 21 at 15:18
Found a better solution If you look at my answer, which is the perfect way to do it. Plus it can be scripted and automated which is an additional bonus. – Drejc Jan 22 at 9:59
vote up 1 vote down

What you want to do is imposition. There are commercial tools to impose PDFs such as ARTS crackerjack and Quite imposing but they are pretty expensive (US$500), require a copy of acrobat professional and are overkill for imposing 2 A4 pages to an A3 sheet.

link|flag
vote up 1 vote down check

Found the following (free and open-source) tool for doing Imposition called Impose (thanks danio for the tip). This solved my problem perfectly.

EDIT: Here is how it's done:

Use PDF Toolkit to joint two PDF files into one (two A4)

pdftk File1.pdf File2.pdf cat output OutputFile.pdf

Create from this a single page (one A3):

java -cp Multivalent.jar tool.pdf.Impose -dim 2x1 -verbose -paper-size "42.2x29.9cm" -layout "1,2" OutputFile.pdf
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.