我可以使用 openright 来避免报告文档中的页码吗?

我可以使用 openright 来避免报告文档中的页码吗?

我有一个报告类,但我不想切换它。如果我使用 openright 选项,我会遇到空白页被标记的问题。在删除“openright”选项并手动插入空白页之前,我想知道是否可以更改这些空白页的标记。

以下是示例代码

\documentclass[a4paper,12pt,twoside,openright]{report}
\begin{document}
\chapter{Chapter One}
Some big text.
\chapter{End}
See you later aligator.
\end{document}

答案1

您可以使用emptypage包裹:

\documentclass[a4paper,12pt,twoside,openright]{report}
\usepackage{emptypage}
\begin{document}
\chapter{Chapter One}
Some big text.
\chapter{End}
See you later aligator.
\end{document}

相关内容