Is it possible to merge multiple footnote?
For example: "Solution A\footenote{Created by person C} and solution B\footnote{Created by person C} are great".
The footnote should then be just one with the text "Created by person C".
Is it possible to merge multiple footnote?
For example: "Solution A\footenote{Created by person C} and solution B\footnote{Created by person C} are great".
The footnote should then be just one with the text "Created by person C".
One solution is the fixfoot package. You must compile twice to see only a foot note.
\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}
\DeclareFixedFootnote\personC{Created by person C.}
– John Doe May 03 '18 at 18:17