可以合并多个脚注吗?
例如:"Solution A\footenote{Created by person C} and solution B\footnote{Created by person C} are great".
脚注应该与文本融为一体"Created by person C"
。
答案1
一个解决方案是fixfoot
使用软件包。您必须编译两次才能看到脚注。
\documentclass{article}
\usepackage{xspace}
\usepackage{fixfoot}
\DeclareFixedFootnote*{\personC}{Created by person C.}
\begin{document}
Solution A\personC and solution B\personC are great.
\end{document}