我試圖更改文字中腳註標記的大小,使其變小,但沒有成功。
這是我在序言中的內容:(稍微改變了我正在使用的回憶錄類別的範例)
\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}