[Tex/LaTex] Symbols instead of numbers as footnote markers

footnotesnumberingsymbols

How can I make LaTeX use symbols (*, †, ‡, and so on) instead of numbers to mark footnotes? (The numbers are confusing because I use superscripted numbers for citations.)

Best Answer

Use the footmisc package, with option symbol.

here is small example:

\usepackage[symbol]{footmisc}

\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\footnote[num]{text}

instead of num you can put the number of the symbol you like:

1   asterisk        *   2   dagger      †   3   double dagger       ‡
4   section symbol  §   5   paragraph   ¶   6   parallel lines      ‖
7   two asterisks   **  8   two daggers ††  9   two double daggers  ‡‡