我想重现以下布局,在一页上放置两个图形,在对页上放置另外两个图形。
我希望将第一对图放在偶数页上,将第二对图放在奇数页上,以便在打印和装订手稿时可以同时看到所有四个图。
答案1
您可以使用该dpfloat
包来实现此目的:
\documentclass{book}
\usepackage{dpfloat}
\usepackage[demo]{graphicx}
\begin{document}
Some Text
\begin{figure}
\begin{leftfullpage}
\centering
\includegraphics[width=5cm,height=3cm]{inserthere}
\caption{LEFT 1}
\includegraphics[width=5cm,height=3cm]{inserthere}
\caption{LEFT 2}
\end{leftfullpage}
\end{figure}
\begin{figure}
\begin{fullpage}
\centering
\includegraphics[width=5cm,height=3cm]{inserthere}
\caption{RIGHT 1}
\includegraphics[width=5cm,height=3cm]{inserthere}
\caption{RIGHT 2}
\end{fullpage}
\end{figure}
\end{document}