Ubuntu – How to combine/merge pages in pdf file (GUI)

pdfsoftware-recommendation

I want to combine two pages in pdf file into single page.

Consider I have a pdf file in which there are two pages, now I want to combine two pages into (single) one, No-matter for (how-long) page-size!

How to do that?

Note: This question is not about combine two pdf files or merging pdf files or adding pages in pdf files.

Also visit Question about scaling page in pdf.

Best Answer

PDFJam (Not a GUI app)

Multiple pages can be combined with it.

sudo apt-get install pdfjam

Then you need to use the pdfnup command to combine pages:

pdfnup -2 [INPUT].pdf [OUTPUT].pdf

This will combine two input pages per one output page.

Refer to man pdfnup for more details.

Also refer this Stackoverflow question.

Related Question