脚注的括号

脚注的括号

我尝试在我的文档中自定义脚注符号。

我的目标(括号与字母“T”一样大,数字与字母“T”高度相同):

在此处输入图片描述

当前的:

在此处输入图片描述

\documentclass{book}
\usepackage{fancyhdr}

\pagestyle{fancy}
\renewcommand*{\thefootnote}{(\arabic{footnote})}
\begin{document}
    Note\footnote{Tylko}
\end{document}

我尝试更改latex.ltx文件,但没有成功。

答案1

您可以更新,这将更新在文本以及脚注中设置oot ote 的\@makefnmark方式:fnmark

在此处输入图片描述

\documentclass{book}

\makeatletter
\def\@makefnmark{\hbox{(\@textsuperscript{\normalfont\@thefnmark})}}
\makeatother

\begin{document}

Note\footnote{Footnote}

\end{document}

原始定义没有周围的(...。)

答案2

如果您使用 AMS 类,则可以按如下方式重写相应的代码:

\makeatother
\def\@makefnmark{%
    \leavevmode
    (\raise.9ex\hbox{\fontsize\sf@size\z@\normalfont\@thefnmark})%
}

\def\@makefntext{\noindent\@makefnmark\kern .5em}
\makeatother

相关内容