Thanks to TexStackExchange community, I have learned to insert a footnote after a word. Same as:
But when I have Fransson et al [2] I want the 2 to be between the 'Fransson' and the et al. How can I do this?
Thanks to TexStackExchange community, I have learned to insert a footnote after a word. Same as:
But when I have Fransson et al [2] I want the 2 to be between the 'Fransson' and the et al. How can I do this?
I found another way from:
Non-superscript footnotes, in the text
The code:
\documentclass{article}
\makeatletter
% Default:
% \def\@makefnmark{\hbox{\@textsuperscript{\normalfont\@thefnmark}}}
\renewcommand{\@makefnmark}{\makebox{\normalfont[\@thefnmark]}}
%\makeatother
\begin{document}
fransson \textit{et al.} ~\footnote{bla bla bla}
\end{document}