更改脚注编号的位置

更改脚注编号的位置

感谢 TexStackExchange 社区,我学会了在单词后插入脚注。 效果如下:

弗兰松

但当我有的时候,Fransson et al [2]我希望2在“Fransson”和 我怎样才能做到这一点?

答案1

我找到了另一种方法:

正文中的非上标脚注

代码:

\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}

在此处输入图片描述

在此处输入图片描述

相关内容