附录 Fancyhdr 标题突然消失

附录 Fancyhdr 标题突然消失

我使用 fancyhdr 包。它对整个文档都很好用,但是在附录中,最后两页没有页眉。我在网上找不到解决方案,非常感谢任何帮助!

另外,我希望右侧标题上只显示“第一部分”,不显示“A”前缀。但是, \renewcommand{\sectionmark}[1]{\markright{#1}}右侧没有任何内容。

这是我的代码:

\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage[titletoc]{appendix}
\usepackage{graphicx}
\usepackage[left= 2.7cm,right = 2cm, bottom = 4 cm]{geometry}
\author{I}
\usepackage{fancyhdr} 

\begin{document}
\begin{appendices}
\pagestyle{fancy}
%\renewcommand{\sectionmark}[1]{\markright{#1}}
\lhead{\textit{APPENDIX}}
\rhead{\textit{\leftmark}}
\appendixpage
\thispagestyle{empty}
\newpage
\pagenumbering{Roman} 

\section{Part I}
\subsection{Image I}
\includegraphics[width=\linewidth]{example-image-a} 
\subsection{Image II}
\includegraphics[width=\linewidth]{example-image-a} 
\subsection{Image III}
\includegraphics[width=\linewidth]{example-image-a} 

\section{Part II}
\includegraphics[width=0.95\linewidth]{example-image-a} 
\end{appendices}

\end{document}

Thank you!

答案1

好的,我找到了部分答案 - 需要在 \begin{appendices} 之前设置命令 \pagestyle{fancy} 并且它可以正常工作!

相关内容