在双面版式的文档中,为消除浮动图形间差别,常常希望将图形放在迎面页 (facing page)上。为达到这一目的,仍须使用与前两节中相似的
方法。为简单起见,定义命令 \facingfigures 如下:
\newcommand\facingfigures{%
\vspace*{\fill}%
\centering
\includegraphics{left.eps}
\figcaption{This is on the left (even) page.}
\vspace*{\fill}\newpage\vspace*{\fill}%
\centering
\includegraphics{right.eps}
\figcaption{This is on the right (odd) page.}
\vspace*{\fill}\newpage}
这时可用 \facingfigures 与 \afterpage,\ifthenelse 一起
来生成迎面页图形。
\afterpage{\clearpage%
\ifthenelse{\isodd{\value{page}}}%
{\afterpage{\facingfigures}}%
{\facingfigures}}
|