How can I easily convert/split/tile every page of an PDF file which is A3/landscape to A4/portrait?
Asked
Active
Viewed 1.4k times
3 Answers
21
command line solution
Install pdfposter
sudo apt-get install pdfposter
Use pdfposter
pdfposter path/to/input.pdf path/to/output_splitted.pdf -m a4 -p 2x1a4

user1251007
- 1,131
- 2
- 12
- 30
1
mutool poster -x 2 input.pdf output.pdf
Installation in Debian 10/Buster:
apt install mupdf-tools
For reordering the pages after splitting, you can use pdftk
.

user1338062
- 976
-
Is there a way to make
mutool
add a margin around the printable area of the page? – Tom Sep 21 '22 at 17:14
0
GUI solution
If the dimension (A4 instead of A3) is not important (as this is not important for viewing the file and can be easily adjusted while printing), you can use PDFsam (open source) which allows to rotate pages.

user1251007
- 1,131
- 2
- 12
- 30
--overlap-percent
option here: https://gitlab.com/pdftools/pdfposter/-/issues/1 – ulidtko Nov 01 '20 at 00:06