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 ;)
\clearpageafter the figure solve your problem ? If your cover page is a pdf file, perhaps you could consider including it with the packagepdfpages. – Corentin Sep 7 '12 at 9:36figurefor this purpose is wrong. Either usecenteror, better, the commands provided bypdfpages. – egreg Sep 7 '12 at 10:02