GNU/Linux Desktop Survival Guide
by Graham Williams |
|||||
PDF Join |
20200309 The simplest join or concatenation is achieved
using pdfjoin from the texlive-extra-utils
package using the --outfile
or -o
option:
$ pdfjoin p1.pdf p2.pdf p3.pdf --outfile doc.pdf |
With pdftk from the pdftk package it is as simple:
$ pdftk p1.pdf p2.pdf p3.pdf cat output doc.pdf |