Possible Duplicate:
How to include a picture over two pages, left part on left side, right on right (for books)?
The problem is the following:
I am formatting a twopage book on latex and I have a gantt diagram divided on two page size images.
What can I do for putting the first image on an even page and the second on the following page so that way one can open that pages and wiew the whole diagram without passing pages?
I tried using the following command before the two pictures, but that doesn't seem to work.
\newcommand{\newevenside}{
\ifthenelse{\isodd{\thepage}}{\newpage}{
\newpage
\phantom{placeholder} % doesn't appear on page
\thispagestyle{empty} % if want no header/footer
\newpage
}
}
The code which I use for putting the images on the document is
\newevenside
\begin{figure}[hp!]
\begin{flushright}
\includegraphics[width=18cm]{figuras/project1.eps}
\end{flushright}
\end{figure}
\begin{figure}[hp!]
\begin{flushleft}
\includegraphics[width=18cm]{figuras/project2.eps}
\caption{O plan temporal do proxecto.\label{project}}
\end{flushleft}
\end{figure}
Thanks in anticipation.
memoirand I have two images on eps. Thanks, but that's not what I am searching for. – Pedro Montoto García Aug 30 '11 at 12:30memoir, too. – lockstep Aug 30 '11 at 12:32