I have multiple jpg files and I want to create a PDF with one image per page without any margin. Until now I used something like this and was enough because all images were the same size.
Code: Select all
\documentclass{article}
\usepackage[margin=0pt,paperheight=800mm,paperwidth=600mm]{geometry}
\usepackage{pdfpages}
\parindent=0pt
\pagestyle{empty}
\begin{document}
\includepdf{Page_001.jpg}
\includepdf{Page_002.jpg}
\includepdf{Page_003.jpg}
\includepdf{Page_004.jpg}
\includepdf{Page_005.jpg}
...
\end{document}