I am working on the layout of my dissertation and I would like to have the following design for all my chapter-openings:
- New chapters should always start on the left page, with a picturepage that contains only an illustration that spreads over the whole left page. Thus, there is no text on this page, only a large illustration. This whole page illustration is different for each chapter.
- On the page to the right of the picturepage (i.e., the next page), the normal chapter opening page with title, chapternumer, etc., should be.
I have been trying a lot to achieve this, but I do not seem to get the picturepage on the page preceding the normal chapter opening. E.g., I tried to set the documentclass to openleft, but I did not succeed to include a picture on the left, and the chapteropening to the right. In the minimal example below, I have tried to use the \part as picturepage (let \part start on the left page, put picture on it, then let \chapter start on the right page). However, the picture does not display on the part page, but on the next page.
Sorry if the latex code is not so neat, I just started to learn it.
Thank you very much in advance.
Minimal example:
\documentclass[10pt,showtrims,openright]{memoir}
\usepackage{eso-pic}
\usepackage{graphicx}
\usepackage{geometry}
\setstocksize{25cm}{18cm}
\settrims{0.5cm}{0.5cm}
\geometry{paperwidth=17cm, paperheight=24cm}
\setlrmarginsandblock{2.5cm}{2.5cm}{*}%%%%
\setulmarginsandblock{2.5cm}{3cm}{*}
\checkandfixthelayout
% To delete white page after part and put the picture on the part page
\renewcommand{\afterpartskip}{\vfil}
\begin{document}
\openleft
\part*{Prechappicturepage1}
\AddToShipoutPictureBG*{% Add picture to current page
\AtStockLowerLeft{% Add picture to lower-left corner of paper stock
\includegraphics[width=\stockwidth,height=\stockheight]{art/testimage.eps}}}
\openright
\chapter{Title ch1}%
\openleft
\part*{Prechappicturepage2}
\AddToShipoutPictureBG*{% Add picture to current page
\AtStockLowerLeft{% Add picture to lower-left corner of paper stock
\includegraphics[width=\stockwidth,height=\stockheight]{art/testimage.eps}}}
\openright
\chapter{Title ch2}%
\end{document}