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

8,239

Solution 1

If you're looking for an OpenSource solution I highly recommend to look at PDFsam, which comes with a huge pack of useful features to merge, split and "alternate mix" PDF files.

enter image description here

Here's a brief guide explaining what it can do, with a strong focus on the Alternate Mix feature which is one of its major strenghts.

Solution 2

PDF-Shuffler is a GUI PDF app that allows you to merge, shuffle and delete PDF pages.

Install with;

Sudo apt-get install pdfshuffler

Good luck.

Solution 3

For ubuntu 18.04 i installed texlive-extra-utils (which contains pdfjam)

sudo apt install texlive-extra-utils

and then for 2 pages:

pdfnup --batch --suffix 2up my_pdf_file.pdf

or for 4pages in table 2x2 format:

pdfjam my_pdf_file.pdf --no-landscape --frame true --nup 2x2 --suffix 4up  --outfile ~/Desktop/

Solution 4

Sejda is an online service based on an open source PDF engine and the N-Up feature should do what you are asking.

Share:
8,239
Pandya
Author by

Pandya

Started using Linux and StackExchange since Ubuntu 12.04 LTS. Then Upgraded to 14.04 LTS. Now I am using Debian GNU/Linux on my Laptop and PureOS on old Desktop computer. I recommend visiting the Philosophy of GNU Project As I've replaced Ubuntu with Debian GNU/Linux, Now my question(s) are became off-topic on AskUbuntu. So, I continue to Unix & Linux. The second reason for my shifting to U & L is I found U & L more interesting than AU since AU is only Ubuntu specific whereas U & L is a broad concept and in my opinion U & L deserves generic questions. (I know why SE has AU & U & L both).

Updated on September 18, 2022

Comments

  • Pandya
    Pandya over 1 year

    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.

  • Oli
    Oli almost 10 years
    Unfortunately this is only good for simple reordering of pages and merging documents. The question appears to be about merging pages within a single document.
  • Admin
    Admin almost 2 years
    pdfjam still works on Ubuntu 20.04. Thanks