当 \footnotetext 放在 mdframed 内时不显示脚注编号

当 \footnotetext 放在 mdframed 内时不显示脚注编号

我想在mdframed这样的环境中放置几个​​脚注

\documentclass{article}
\usepackage{mdframed}

\begin{document}

First\footnote{first footnote}

\begin{mdframed}
Second\footnotemark
\footnotetext{Second footnote}
Third\footnotemark
\footnotetext{Third footnote}
\end{mdframed}

\end{document}

但没有显示脚注编号 在此处输入图片描述

如果我将\footnotetexts 放在 外面mdframed,数字就会显示在页面末尾。但这当然会阻止我在框内添加多个脚注。 在此处输入图片描述

答案1

将此添加到序言中似乎可以解决问题

\let\thempfootnote\thefootnote

相关内容