Occasionally, you will probably need to combine a set of PDF files into a single PDF file…
LaTeX can do it – But it can be a pain to get the correct appearance and find the correct API parameters for scaling, margins, number of pages per PDF, etc. Below is a quick snippet that should just work.
LaTeX Code:
\documentclass[]{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages={1-},scale=1]{1.pdf}
\includepdf[pages={1-},scale=1]{2.pdf}
\includepdf[pages={1-},scale=1]{3.pdf}
% -- add more pdf files here --
\end{document}
If you don’t have a LaTeX compiler, you can probably just get away with https://www.pdfmerge.com instead, if < 15 mb.
hth.
Like this:
Like Loading...
Related
Published by Pete Scully PhD (UK)
Find my work on Research, Technology & Science... Past highlights include @PyCon, Data Science @Lexr.AI, Agri-Tech @MSU-TH, 3D Reconstruction Light Stages for Plants (Phenotypic/Genomic Mappings) @AU @NPPC-UK, Cybernetics, Social Science + Behavioural Research + Grant Writing @MU-TH, Model Explainability, IoT Apps for Zombies, Self-Healing AI + Cyber Security @Airbus, COVID-19 Thailand's Provincial Public Data Analysis, PlayfulCoding.EU, Training SW Engineers @MorganStanley, Commercial Projects + Start-ups.
To discuss or work together, I'm on email: pmdscully-at-gmail-com.
View all posts by Pete Scully PhD (UK)