减小文本中脚注标记的大小

减小文本中脚注标记的大小

我尝试改变文本中脚注标记的大小,使其变小,但没有成功。

这是我在序言中的内容:(对我使用的回忆录类的例子稍有改动)

\renewcommand{\@makefnmark}{\hbox{\textsuperscript{\tiny{\@thefnmark}}}}

但在编译时我得到的是

l.16 \renewcommand{\@makefnmark}
                                {\hbox{\textsuperscript{\tiny{\@thefnmark}}}}
? 

并且没有效果。

我做错了什么?还有其他方法可以明确地将脚注标记的大小从正常文本大小更改为较小大小吗?

答案1

这对我来说很有用,无论是对于回忆录还是文章类。

\documentclass{memoir}

\makeatletter
\renewcommand{\@makefnmark}{\hbox{\textsuperscript{\tiny{\@thefnmark}}}}
\makeatother

\begin{document}
Some text.\footnote{A footnote.}
\end{document}

相关内容