双面页码更改问题

双面页码更改问题

我使用带有 twopage 选项的 scrartcl 来获取双面文档。结果符合要求。

如果我将前几页(标题页、目录……)的页码从罗马字母改为阿拉伯字母,则页数计数器会重置。这也是我所希望的。但是,我不希望页面方向(左/右)也被重置。我该如何避免这种情况?

这是一个最小的工作示例:

\documentclass[twoside]{scrartcl}
\usepackage{blindtext}

\begin{document}

\pagenumbering{Roman}
\section{right page, as it should be}
\blindtext \blindtext \blindtext 
\newpage

\section{left page, as it should be}
\blindtext \blindtext \blindtext 
\newpage

\section{right page, as it should be}
\blindtext \blindtext \blindtext 
\newpage

\pagenumbering{arabic}

\section{right page again. this should be a left page}
\blindtext \blindtext \blindtext 
\newpage

\end{document}

这个问题也已被问过这里那里提供答案的地方(另见下文)。

答案1

\cleardoublepage只需在前面添加一个\pagenumbering{arabic}。页面将位于空白页之后。显然,将页面放在左侧1是一种不好的风格……1

相关内容