我希望脚注编号出现在章节标题的旁边(而不是下面),以引用该特定章节的合著者。
\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}