如何在使用方框换行时将脚注文本放在脚注上

如何在使用方框换行时将脚注文本放在脚注上

我尝试了以下代码,但脚注文本被包裹在框中。有没有办法将脚注文本放在页面的脚注上?

\documentclass{article}
\usepackage[framemethod=tikz]{mdframed}
\usepackage{lipsum}
\usetikzlibrary{shadows}

\definecolor{light}{rgb}{0.95,0.95,1}
\definecolor{darkblue}{rgb}{0.27,0.4,0.87}


\newmdenv[innerlinewidth=0.5pt,
roundcorner=3pt,linecolor=darkblue,backgroundcolor=light, shadow=true]{soa}

\begin{document}

\begin{soa}
The quick brown fox jumps over the lazy dog 1~\footnote{footnote text 1}
\end{soa}

\begin{soa}
The quick brown fox jumps over the lazy dog 2~\footnote{footnote text 2}
\end{soa}

\end{document}

在此处输入图片描述

顺便说一句:圆角盒子解决方案来自这个帖子:如何构造带圆角的彩色盒子

相关内容