正文中的非上标脚注

正文中的非上标脚注

关于如何使脚注标记全尺寸显示,已经有答案在脚注文本中(即页面底部),例如:, 或者。我想知道如何让它不上标在文本本身中例如

For more information, see [1].

   ----------------
1. More information

IE,不是 For more information, see^1

答案1

默认文档类通过 格式化脚注标签和引用。在序言中很容易\@makefnmark重新定义它以使用来设置它:[x]

在此处输入图片描述

\documentclass{article}

\makeatletter
% Default:
% \def\@makefnmark{\hbox{\@textsuperscript{\normalfont\@thefnmark}}}
\renewcommand{\@makefnmark}{\makebox{\normalfont[\@thefnmark]}}
\makeatother

\begin{document}

For more information, see~\footnote{More information.} or~\footnote{Some more information.}.

\end{document}

相关内容