使脚注编号显示在章节标题旁边

使脚注编号显示在章节标题旁边

我希望脚注编号出现在章节标题的旁边(而不是下面),以引用该特定章节的合著者。

\documentclass{report}
\begin{document}
\chapter{hello}\footnote{another author}
\end{document}

这会将数字 1 置于章节标题下方。如何修复此问题?

答案1

您必须小心考虑目录中可能出现的内容。因此,请使用不同的可选参数\chapter

在此处输入图片描述

\documentclass{report}

\usepackage[paper=a6paper]{geometry}% Just for this example

\begin{document}

\tableofcontents

\chapter[hello]{hello\footnote{another author}}

\end{document}

如果你想要一些更微妙的东西,你可以使用:

在此处输入图片描述

\chapter[hello]{hello\raisebox{.3\baselineskip}{\normalsize\footnotemark}}
\footnotetext{another author}

相关内容