Fancyhdr 和 Makeidx

Fancyhdr 和 Makeidx

为什么索引没有与整个文档相同的页眉/页脚? 这是一个 MWE:

\documentclass{article}

\usepackage{fancyhdr,imakeidx,lipsum}      
\makeindex

\lhead{Lorem Ipsum}
\rhead{Cicero}

\begin{document}
    \pagestyle{fancy}

   \section{Lorem Ipsum}
   \index{lorem}
   \lipsum[1]

   \subsection{Nam dui Lingua}
   \index{nam}
   \lipsum[2]

   \printindex 
\end{document}

我一直在尝试,\indexsetup{othercode={...}}但没有任何进展。我找不到任何有用的信息文档我也非常感激您的帮助。

答案1

索引的第一页使用纯文本页面样式。您可以使用以下命令进行修改\indexsetup

\documentclass{article}

\usepackage{fancyhdr,imakeidx}
\usepackage[index]{kantlipsum}

\makeindex
\indexsetup{firstpagestyle=fancy}

\lhead{Lorem Ipsum}
\rhead{Cicero}

\pagestyle{fancy}

\begin{document}

\section{Lorem Ipsum}

\kant[1-200]

\printindex

\end{document}

在此处输入图片描述

相关内容