[Tex/LaTex] Image as cover page

coversgraphics

I want to add a figure to fill the whole first page (instead of making it with the latex commands). And then to add a blank page to begin the next chapter on an odd page number. When I write :

\setcounter{page}{0}
\thispagestyle{empty}
\begin{figure}
\centering
\includegraphics[heigth=24cm]{images\pagedegarde.pdf}
\end{figure}
\newpage
\strut
\newpage
\frontmatter
\chapter*{Remerciements}
...

instead of having juste one blank page after the figure, I have one before the cover page, and one after the cover page.
If I add the H option, I have two blank pages after the figure.
What shall I do? Thank you 😉

Best Answer

Are you satisfied with including the image your way? If you want to use the formatting (esp. the margins) of your pdf-file consider the use of \includepdf from pdfpages

\cleardoublepage lets you start on the next odd page number

This way it works:

\documentclass[twoside]{scrbook}
%\usepackage{graphicx}
\usepackage{pdfpages}
\listfiles

\begin{document}
\thispagestyle{empty}
\includepdf{test.pdf}
\cleardoublepage
\frontmatter
\chapter*{Remerciements}
\end{document}

Btw: There's no need to set page counter. \frontmatter will start with 'i' in default.

Related Question