我希望能够从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}