如何增加脚注计数器的大小

如何增加脚注计数器的大小

我正在用 LaTeX 为有视力障碍的人写一份文档,这意味着我必须为他们增加字体大小。如何增加脚注计数器使用的字体大小。

与软件包一起使用时footmisc\renewcommand\footnotelayout{\Large}会增加脚注内容所用字体的大小,但不会增加脚注计数器的大小。请问我该怎么做?

答案1

您可以重新定义脚注计数器打印宏\thefootnote

在此处输入图片描述

\documentclass{article}
\setlength{\textheight}{100pt}% Just for this example
\usepackage{footmisc}% http://ctan.org/pkg/footmisc
\usepackage{relsize}% http://ctan.org/pkg/relsize
\renewcommand\footnotelayout{\Large}
\renewcommand{\thefootnote}{\larger[2]\arabic{footnote}}%
\begin{document}
Here is some text\footnote{This is a footnote} and some more text.
\end{document}

我用过relsize提供\smaller[<i>]\larger[<i>]逐步减小/增大字体大小<i>。虽然这不是必需的,但它仅显示了可以执行的操作。或者,您也可以直接使用

\renewcommand{\thefootnote}{\large\arabic{footnote}}

\large您想要的字体大小在哪里。

相关内容