脚注编号与定理标题的距离

脚注编号与定理标题的距离

考虑以下 MWE:

\documentclass{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\newtheorem{theorem}{Theorem}
\begin{document}
\section{Something}
\begin{theorem}[Something]\footnote{Something}
Blah blah.
\end{theorem}
\end{document}

结果如下: 图像

我觉得脚注编号应该更靠近定理标题。在我的文档中,情况更糟,因为我使用的是普通文本而不是斜体。可以这样更改定理样式:如果后面的命令是 a \footnote,距离就会减小。或者使用其他技巧,因为这个问题是风景中的污点。

答案1

一个非常简单但有效的解决方案是使用负水平空间将脚注移回。除非你有成千上万的定理和脚注,否则它也可能是最多有效的解决方案(但我同意这不是一个非常复杂的解决方案):

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}

\begin{document}
\section{Something}

\begin{theorem}[Something]\hspace{-0.5em}\footnote{Something}
Blah blah.
\end{theorem}

\end{document}

相关内容