我正在写论文。我想让我的页眉在奇数页和偶数页之间交替显示。理想情况下,我会将主要部分标题放在偶数页上,将小节标题放在奇数页上,但我找不到这样做的方法。我试过使用 titleps,但没有成功。我现在使用的是 fancy 包。
我尝试使用 titleps:
\newpagestyle{main}{%
\setheadrule{1pt}%
\sethead{\thesection~\sectiontitle} % header left
{} % header center
{\thesubsection~\subsectiontitle\quad}% header right
\setfoot{}{\thepage}{}
}
\pagestyle{main}
答案1
这应该有效:
\newpagestyle{main}{%
\setheadrule{1pt}%
\headrule
\sethead[\thesection~\sectiontitle][][]%headers on even page (left-centre-right)%
{}{}{\thesubsection~\subsectiontitle\quad}% headers on odd pages
\setfoot{}{\thepage}{}
}
\pagestyle{main}