2

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

1 Answers1

3

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}
Fran
  • 80,769
  • The "*{..}" part caused issues for me. This worked:

    \DeclareFixedFootnote\personC{Created by person C.}

    – John Doe May 03 '18 at 18:17