我想问一下,如何才能使脚注的编号不使用上标,而使用正常显示?
比如说,使用了如下的代码:这是一句话\footnote{这是一个脚注。}。
显示是这样的:
那么,怎么使这个“1”变成非上标形式呢?我在网上也查不到呢,谁能帮一下呢,谢谢~
https://zhuanlan.zhihu.com/p/74515148
\documentclass{article}
\usepackage{xpatch}
\makeatletter
% cancel the superscript style of counter used in footnote text
\xpatchcmd\@makefntext
{{\hss\@makefnmark}}
{{\hss\@makefnmark@nosuperscript}\space}
{}{\fail}
% old: superscript style
% \def\@makefnmark{\hbox{\@textsuperscript{\normalfont\@thefnmark}}}
% new: normal style, lower baseline
\def\@makefnmark@nosuperscript{\hbox{\normalfont\@thefnmark}}
\makeatother
\begin{document}
test\footnote{test}
\end{document}
你也没问
footmisc
宏包的问题