footmisc 包对于更改脚注文本本身的布局/样式非常有用。例如:
\renewcommand\footnotelayout{\scriptsize}
但是,如何更改脚注编号/计数器的大小(不是在文档正文中,而是在脚注本身中)。我在 footmisc 包中没有看到对此的任何引用。
谢谢!
答案1
一种可能性是重新定义\@makefntext
:
\documentclass{article}
\makeatletter
\long\def\@makefntext#1{\parindent 1em\noindent
\hb@[email protected]{%
\hss\@textsuperscript{\huge\@thefnmark}}#1}%
\makeatother
\begin{document}
Test\footnote{test}
Test\footnote{test}
\end{document}