在同一页的对齐环境中的脚注

在同一页的对齐环境中的脚注

关于数学模式下的脚注。在页面末尾的环境\footnotemark中使用时,脚注会出现在下一页。这是一个最小示例。如何让脚注与脚注标记出现在同一页上?align

\documentclass[12pt, a4paper]{article}
\usepackage{geometry}
\usepackage{amsmath}

\begin{document}
Title.
\vspace{19cm}
\begin{align}
  1.\footnotemark
\end{align}
\footnotetext{Footnote.}
\end{document}

答案1

这是作弊。这是黑客行为。它假定这个脚注不是文档中的第一个。

这会将显示和脚注都移动到下一页。

align(无关紧要,但用于单行显示不是一个好主意。)

\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
Title.
\vspace{19cm}
\footnotetext{Footnote.}
\addtocounter{footnote}{-1}
\begin{align}
  1.\footnotemark
\end{align}
\end{document}

示例代码的输出,第一页 示例代码的输出,第二页

相关内容