当我使用多页框时,有没有办法强制将脚注放在当前页面上mdframed
?
对于这个盒子,我必须使用\footnotetext
/这一对\footnotemark
。
目前,我使用了下面的代码。但是,3 个脚注位于框的最后一页。我如何将每个脚注放在它们被调用的当前页面上?
\documentclass{article}
\usepackage{mdframed}
\usepackage{lipsum}
\begin{document}
\begin{mdframed}
\lipsum[1-3]\footnotemark
\lipsum[1-3]\footnotemark
\lipsum[1-3]\footnotemark
\end{mdframed}
\footnotetext{Note \#1}
\footnotetext{Note \#2}
\footnotetext{Note \#3}
\end{document}
提前致谢!