页脚冲突

页脚冲突

我是初学者!我正在尝试使用以下命令在特定页面上添加脚注:

\section [title]{Section Title xxx\footnote{footnote here}}

效果很好,并添加了footnote here脚注。

问题是,我添加脚注后,下一页的页眉就无法正确显示。Section Title xxx左侧页眉不再显示章节标题(此处),仅有的“标题”一词出现在接下来的所有页面中。

我使用以下命令来放置标题:

\pagestyle{fancy}

\renewcommand{\headrulewidth}{1pt}

\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{\chaptername\ \thechapter.\ #1}}{}}

\renewcommand{\sectionmark}[1] {\markright{\thesection\ #1}}

\lhead[\fancyplain{}{\bfseries\thepage}] {\fancyplain{}{\bfseries\rightmark}}

\rhead {\fancyplain{}{\bfseries\thepage}}

\cfoot{\fancyplain{\thepage}{}}

请帮我解决这个问题。

答案1

可选参数\section用于目录和页眉。因此,您需要

\section[Section title]{Section title\footnote{footnote text}}

如果您还需要不同的页眉,例如标题很长,也可以添加

\sectionmark{Short title}

就在之前显示的行之后。

相关内容