所以我需要一个等式后面的脚注,然后我找到了这个解决方案:
\documentclass{scrreprt}
\usepackage{mathtools}
\newtagform{fn}{(}{)\footnotemark}
\begin{document}
\section{Example 1}
\usetagform{fn}
\begin{equation}
E=mc^2
\end{equation}\footnotetext{Footnote}
\usetagform{default}
\section{Example 2}
\end{document}
但是,这会在公式后面添加额外的空格,如下图所示。我该如何避免这种情况?
答案1
你可以把放在\footnotetext
更安全的地方,并避免在周围留白\usetagform
\documentclass{scrreprt}
\usepackage{mathtools}
\newtagform{fn}{(}{)\footnotemark}
\begin{document}
\section{Example 1}
\usetagform{fn}
\begin{equation}
E=mc^2\footnotetext{Footnote}
\end{equation}%
\usetagform{default}%
\section{Example 2}
\end{document}