I need to assemble an A5 sized booklet, and I need the first page to be an image, stretched to fill the whole page. How can I accomplish this?
I have been looking around for the past two hours, messing with incgraph and whatnot, but I cannot obtain an acceptable result.
Simply using:
\includegraphics[width=\pagewidth]{image}
results in the image being off to the lower right, without filling the whole page.
\incgraph{image}
gives no errors but also displays no image.
I keep feeling there must be an easy way to do what I want, but I can't find it.
Any help would be appreciated, thank you.
EDIT: This is what I have. As I said, it doesn't display any image, but also gives no error.
\documentclass[a5paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{incgraph}
\graphicspath{ {./Images/} }
\begin{document}
\incgraph{myCoverImage}
\section{section1}
Sample text
\end{document}
\documentclass{...}and ending with\end{document}. – dexteritas Aug 01 '17 at 15:42pdfpagesand say\includepdf{myCoverImage.jpg}. This package is also great for booklet creation. – doncherry Aug 01 '17 at 16:48