我正在编写具有以下文档类的文档:
\documentclass[a4paper,twoside,openright,12pt]{report}
因为我有一些文本附录,而且它们相当小,所以我在想我是否可以让它们一个接一个地开始,而不是从下一页开始或不跳过任何页面(我需要对其余文本使用 openright 行为)。
答案1
除了将所有附录合并\section
为一个 之外\chapter
,您还可以 a) 完全禁用附录的分页机制 b) 将其设置\cleardoublepage
为\clearpage
以避免章节之间出现空白页。(注意:\cleardoublepage
和\clearpage
由 内部使用\chapter
。)
\documentclass[twoside,openright]{report}
\begin{document}
\chapter{bla}
Some text.
\cleardoublepage
\begingroup
% Alternative A
% \let\clearpage\relax
% Alternative B
\let\cleardoublepage\clearpage
\appendix
\chapter{blubb}
Some text.
\chapter{foo}
Some text.
\endgroup
\end{document}