我可以在等式里做脚注吗?

我可以在等式里做脚注吗?

我可以做一个脚注来澄清方程式中的重要点吗?

答案1

首先:仔细考虑这样做是否正确,然后不要这样做。大多数脚注符号都有数学含义。我曾经花了几分钟思考一个数学表达式的含义,然后才推断出其中一个指数必须是脚注。我解释等式各部分的首选方法是在等式之前或之后用文字解释,或者在等式内用注释解释:

\documentclass{article}
\begin{document}
In the following expression, $q$ is required to be an integer:
\[ 
    n = q\cdot k
\]
And here is another equation:
\[ 
    a^2 + b^2 = c^2 \qquad\text{($c$ is required to be an integer.)}
\]
\end{document}

如果确实需要脚注,您可以尝试该\footnote命令。在某些情况下,这可能会失败,在这种情况下,可以使用命令对\footnotemark\footnotetext,后者在数学环境之外:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
Plain footnote works:
\[ 
    X^2 = Y\footnote{$Y$ is a matrix}
\]
Need to separate mark and text:
\begin{align}
  X^2 &= Y\footnotemark\\
  Y^2 &= Z
\end{align}\footnotetext{$Y$ is a matrix}
\end{document}

不幸的是,它可能会\footnotetext{...}出现在下一页上。除了移动它之外,我不知道有什么简单的方法可以防止这种情况发生当它发生时的数学环境。

相关内容