PDF Arranger (install), formerly known as PDF-Shuffler.
If you want a tool with a simple GUI, try pdfarranger. It allows for merging of PDFs as well as rearranging and deleting pages. For batch processing and/or more complicated tasks, pdftk is of course more powerful.
Ghostscript is a package (available by default in Ubuntu) that enables you to view or print PostScript and PDF files to other formats, or to convert those files to other formats.
To use Ghostscript to combine PDF files, type something like the following:
gs starts the Ghostscript program.
-dBATCH once Ghostscript processes the PDF files, it should exit.
If you don't include this option, Ghostscript will just keep running.
-dNOPAUSE forces Ghostscript to process each page without pausing for user interaction.
-q stops Ghostscript from displaying messages while it works
-sDEVICE=pdfwrite
tells Ghostscript to use its built-in PDF writer to process the files.
-sOutputFile=finished.pdf
tells Ghostscript to save the combined PDF file with the specified name.
-dAutoRotatePages=/None
Acrobat Distiller parameter AutoRotatePages controls the automatic orientation selection algorithm: For instance: -dAutoRotatePages=/None or /All or /PageByPage.
Your input files don't even need to be PDF files. You can also use PostScript or EPS files, or any mixture of the three.
There is a lot you can do with Ghostscript. You can read its documentation for more details.
pdftk
To merge two pdf files,
file1.pdf
andfile2.pdf
:More info available hereWay Back Machine.
To install, run:
PDF Arranger (install), formerly known as PDF-Shuffler.
If you want a tool with a simple GUI, try pdfarranger. It allows for merging of PDFs as well as rearranging and deleting pages. For batch processing and/or more complicated tasks, pdftk is of course more powerful.
Ghostscript is a package (available by default in Ubuntu) that enables you to view or print PostScript and PDF files to other formats, or to convert those files to other formats.
To use Ghostscript to combine PDF files, type something like the following:
Here is a brief explanation of the command:
Your input files don't even need to be PDF files. You can also use PostScript or EPS files, or any mixture of the three.
There is a lot you can do with Ghostscript. You can read its documentation for more details.
Source
You also also use pdfunite to merge pdf documents :
To install
pdfunite
if it is not installed already, run:PDF Chain
A very nice solution is PDFChain. It's GUI is a frontend of PDFTK where you can merge, split or even add some background to your PDF files.
An alternative approach is to use Latex as explained in this post (without root access assuming that you have pdflatex installed): https://tex.stackexchange.com/questions/8662/merge-two-pdf-files-output-by-latex
This is useful in case you do not have the mentioned tools nor root privileges, but you do have pdflatex.
I copy the tex code below to merge
file1.pdf
andfile2.pdf
. Create a file calledoutput.tex
and put:And to compile, simply use:
pdflatex output.tex
The merged file will be named as
output.pdf
.Give PDFMod a try, it’s from the GNOME project:
https://wiki.gnome.org/Apps/PdfMod
Use pdfsam http://www.pdfsam.org/ it's very good for splitting and merging pdfs
I use pdfseparate to extract specific pages from big pdf file:
and aftewards I join them all via command:
This joins:
into:
May be there is an easier way how to cope... :-)
Installation instructions:
You can also use jPDFTweak, pdfsam or pdfjam.
(That said, I use pdftk.)