[Tex/LaTex] How to merge multiple footnotes

footnotes

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".

Best Answer

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}