如何让首页看起来好看

如何让首页看起来好看

我有一个名为 index.tex 的文件,如下所示:

\begin{theindex}
\item apple, 39
\item banana, 23
 ... lots more of this stuff stretching over say 4 pages
\end{theindex}

我将其包含在 MWE 中,如下所示:

\documentclass[12pt]{article}
\usepackage{lastpage}
\usepackage{fancyhdr}
\cfoot{}
\rfoot{Page \thepage/\pageref{LastPage}}
\pagestyle{fancy}

\begin{document}
hello \newpage
hello \newpage
hello \newpage

\include{index}

\end{document}

问题是第一个索引页的页面样式不够花哨,它仅在 cfoot 中指示页码。

如何才能强制第一页与文档的其余部分具有相同的格式?

答案1

环境theindex发出\thispagestyle{plain}命令。删除它的最简单方法是执行

\usepackage{etoolbox}
\patchcmd{\theindex}{\thispagestyle{plain}}{}{}{}

在你的序言中。

相关内容