如何在章节标题中插入两个脚注?
\chapter[aaa]{aaa\protect\footnotemark\footnotemark}
\footnotetext{some text1}
\footnotetext{some text2}
当我使用这种语法时,我会在 aaa 的顶部看到 12(1 和 2 之间没有逗号),并且页面底部的两个脚注都编号为 2!
如何将脚注中的数字更改为符号?
答案1
带有该包的multiple
和选项。symbol
footmisc
\documentclass{report}
\usepackage[multiple,symbol]{footmisc}
\begin{document}
\chapter[aaa]{aaa\footnote{First note.}\footnote{Second note.}}
\end{document}