如何在公式编号中添加脚注?

如何在公式编号中添加脚注?

我想在公式编号中添加脚注。例如,它应如下所示:

在此处输入图片描述

(此图取自 MS Word。)

有人知道如何在 Latex 中做到这一点吗?我尝试了以下代码:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}\label{eq1}\refstepcounter{equation}
  a=b \tag*{(\theequation)\protect\footnotemark}
\end{equation}
\footnotetext{A footnote}

Equation \ref{eq1} is a good equation.

\end{document}

但每次引用该方程时,都会出现一个新的上标,如下所示:

在此处输入图片描述

(这是来自乳胶的。)

引用公式时,出现一个新的上标。如何避免?

答案1

这是一个解决方案,使用中的 命令\newtagform。但是,您不能对带有脚注的方程式使用nor 。usetagformmathtools\eqref\cref

\documentclass{article}
\usepackage{mathtools}
\newtagform{fn}{(}{)\footnotemark}

\begin{document}

\usetagform{fn}
\begin{equation}\label{eq1}
  a=b
\end{equation}
\footnotetext{Some text. }
Equation (\ref{eq1}) is a good equation.
\usetagform{default}
\begin{equation}\label{eq2}
  c = d
\end{equation}

\end{document} 

在此处输入图片描述

相关内容