\footnote{...}
由于数学模式中不允许直接输入,因此常见的方法是先\footnotemark
输入数学,再\footnotetext{...}
在数学后面书写。但是,当数学位于页面底部时,包含该数学的行\footnotetext{...}
位于第二页,导致实际脚注的位置错误。示例:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{pgffor} % for \foreach
\begin{document}
\foreach \x in {1,...,43}
{The \x th fictional space-taking line.
}
\[
fictional + math + formula \footnotemark
\]\footnotetext{This is a fictional footnote. See the weird behavior?}
\end{document}
产量
答案1
将其放入方程式中:
\[
fictional + math + formula \footnotemark
\footnotetext{This is a fictional footnote. See the weird behavior?}
\]