我有一个 LyX 文档,其中我设置了一个标准标题,如下所示
\fancyhf{}
\fancyhead[EC]{\leftmark}
\fancyhead[ER]{\thepage}
\fancyhead[OC]{\leftmark}
\fancyhead[OL]{\thepage}
我创建了另一种样式,只想在新部分页面上使用
\fancypagestyle{secstyle}{%
\fancyhf{}
\fancyfoot[C]{\thepage}}
新章节需要放在新的奇数页上,并且“白页”(如果存在)也必须是纯白色的。所以我有这个
\let\stdsection\section
\renewcommand{\section}{\cleardoublepage\stdsection}
我已经尝试做以下事情
\renewcommand{\section}{\cleardoublepage{\thispagestyle{secstyle}}\stdsection}
但没用。有什么想法吗?
答案1
对于新章节之前的白页问题
\let\origdoublepage\cleardoublepage
\newcommand{\clearemptydoublepage}{%
\clearpage
{\pagestyle{empty}\origdoublepage}%
}
我注意到“secstyle”与“plain”样式相同,因此我可以得到我想要的东西
\let\stdsection\section
\renewcommand*{\section}{\cleardoublepage{\thispagestyle{plain}}\stdsection}