梅威瑟:
\documentclass{article}
\usepackage{bigfoot}
\newfootnote[plain]{default}
\begin{document}
Hello\footnote{A totally cool footnote} world!
\end{document}
脚注采用衬线字体,我更喜欢无衬线字体。
答案1
以下是一个解决方案xpatch
。如果您不想使用 sans 字体输入脚注编号,请删除第二个补丁:
\documentclass{article}
\usepackage{bigfoot}
\usepackage{xpatch}
\newfootnote[plain]{default}
\makeatletter
\xpatchcmd{\@makefnstartbox}{%
\footnotesize}%
{\footnotesize\sffamily}{}{}
\xpatchcmd{\@makefnmark}{\normalfont}{\sffamily}{}{}
\makeatother
\begin{document}
\vspace*{0.9\textheight}
Hello\footnote{A totally cool footnote. } world!
\end{document}