脚注来自互文

脚注来自互文

我希望能够从intertext我在 中使用的 s发送脚注align。有没有简单的方法可以实现这一点(比如使用包)?

例如,

I am a little teapot
\begin{align}
this &=spout
\intertext{Here is my handle,\footnote{(one hand on hip)}}
&=stout
\end{align}
these footnotes get eaten up.

答案1

你可以发布一个\footnotemark内部\intertext和外部align环境的位置来\footnotetext获取里面的脚注align

\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align}
this &=spout\\
\intertext{Here is my handle\footnotemark,}
&=stout
\end{align}
\footnotetext{(one hand on hip)}
\end{document}

相关内容