有时我会在证明中添加脚注例如指定我从哪里获取它,例如以下内容:
\documentclass{article}
\usepackage{amsthm}
\begin{document}
\begin{proof}[Proof\footnotemark]
\footnotetext{A footnote.}
The proof.
\end{proof}
\end{document}
如果排版上述内容,就会发现“Proof”一词的“f”与脚注标记相冲突。
可以在文本和脚注标记之间留出空格,但这会导致文本和脚注标记之间的空格过大。
我感到很困惑,为什么这会是一个问题。通常用斜体书写文本时不会出现这个问题。
非常感谢您的帮助。
答案1
同样的效应也出现在
\textit{Proof\footnotemark}
因为斜体F向右倾斜相当多并且可能会侵入其他角色的空间。
然而,在
\textit{Proof}\footnotemark
因为 LaTeX 在末尾插入了所谓的斜体校正以\textit
避免这种冲突。
您可以使用以下方式手动插入斜体校正\/
\documentclass{article}
\usepackage{amsthm}
\begin{document}
\begin{proof}[Proof\/\footnotemark]
\footnotetext{A footnote.}
The proof.
\end{proof}
\end{document}