未编号部分中的页眉中没有编号的部分

未编号部分中的页眉中没有编号的部分

我尝试使用 fancyheader 获取标题中不带编号的节名。如果我使用带编号的节,这种方法有效,但如果我不想在文档中使用节编号 (\section*{Section Name} ),标题就会消失。MWE:

\documentclass{article}

\usepackage{fancyhdr}
\usepackage{extramarks}
\usepackage{lipsum}

\pagestyle{fancy}
\renewcommand{\sectionmark}[1]{\uppercase{\markright{#1}}}

\rhead{\rightmark}
\lhead{}
\cfoot{\thepage}

\begin{document}

\section*{First Section}

\lipsum[1-20]

\end{document}

答案1

使用\renewcommand{\thesection}{}。它会记录姓名,但不会记录号码。这能解决您的问题吗?

相关内容