一段文本是否可以只设置偶数/奇数页码

一段文本是否可以只设置偶数/奇数页码

是否可以将一连串页面设置为仅偶数或仅奇数,以便偶数页或奇数页的所有页面样式元素(边距、页眉、页脚等)与它们相关联,并且它们编号为 n*2、n*2+1 等?

我目前正在使用回忆录课程,但这不是绝对必要的。

(我知道有各种各样的用于在列或页面中流动文本的包,但由于各种原因无法使用它们。)

答案1

这将调整页数,使其以 2 为单位增加,因此从 1 开始,您将获得第 1、3、5、7 页,所有页面的页面样式均为奇数

\documentclass[twoside]{article}

\makeatletter
\let\old@outputpage\@outputpage
\def\@outputpage{\old@outputpage\stepcounter{page}}
\makeatother

\pagestyle{headings}
\begin{document}
\newcount\z
\section{aaa}
aaa
\subsection{bbb}

{\loop\ifnum\z<1000 \romannumeral\z\ \advance\z1 \repeat}

\section{aaa aaa}
aaa
\subsection{bbb bbb}

{\loop\ifnum\z<1000 \romannumeral\z\ \advance\z1 \repeat}

\end{document}

相关内容