I am writing a long report and want to use symbols in footnotes instead of numbers.
When I add the 10th footnote the error "counter too large" occurs
\documentclass{report}
% Using symbols for footnotes
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\begin{document}
\footnote{f1}, \footnote{f2}, \footnote{f3}, \footnote{f4},
\footnote{f5}, \footnote{f6}, \footnote{f7}, \footnote{f8},
\footnote{f9}, \footnote{f10}
\end{document}
If I use: \footnote[1]{f10} instead of \footnote{f10}, the error is gone but does that mean that I have to count each footnote from here? Or is there an easier way to do this?