如何强制文本仅出现在偶数/奇数页

如何强制文本仅出现在偶数/奇数页

我正在尝试排版一份格式有些特别的手稿。这是一份双面手稿,正文只出现在偶数页上。奇数页包含与偶数页相关的附加信息。如果没有此类附加信息,奇数页应该是空白的。

因此,例如,给定一个六页的文档,示例布局将是:

  1. 空白的
  2. 关于 foo 的信息
  3. 空白的
  4. 关于 foo 的信息(续)
  5. 关于酒吧的诗
  6. 酒吧信息

有人能想到用 LaTeX 实现这一点的方法吗?

答案1

问题可能只是你“跳过了一页输出”,使用一些策略性的插入语很容易就能解决这个问题\afterpage{\mbox{}\clearpage}

在此处输入图片描述

\documentclass{article}

\usepackage[paper=a6paper]{geometry}
\usepackage{lipsum,afterpage}
\usepackage[strict]{changepage}

\newcommand{\nextoddpage}{\checkoddpage\ifoddpage\cleardoublepage\else\clearpage\fi}
\newcommand{\nextevenpage}{\checkoddpage\ifoddpage\clearpage\else\cleardoublepage\fi}

\begin{document}

% Document layout
% ---------------
% 1 Blank
% 2 Info about foo
% 3 Blank
% 4 Info about foo (continued)
% 5 Poem about Bar
% 6 Info about Bar

\mbox{}% 1 Blank

\nextevenpage

\afterpage{\mbox{}\nextevenpage}% 3 Blank
\lipsum[1-3]% 2+4 Info about foo (continued) (Lorem ipsum...felis eu massa.)

\nextoddpage

\lipsum[49]% 5 Poem about Bar (Vivamus sodales...rhoncus eu, magna.)

\nextevenpage

\lipsum[50]% Info about Bar (Quisque facilisis...Suspendisse arcu.)

\end{document}

指某东西的用途changepage可能没有必要,这取决于您的实施。

相关内容