skipbelow
關於這個問題,網路上有很多問題mdframed
。對我來說,這跳過以下問題沒有解決。我的系統上的軟體包版本mdframed
是:
mdframed.sty 2013/07/01 1.9b: mdframed
如果我理解得好的話,這是最後一篇。更新有問題嗎?
答案1
該修復確實已應用,但新版本從未被拉出。
\documentclass[11pt]{article}
\usepackage[framemethod=TikZ]{mdframed}
\usepackage{xpatch}
\makeatletter
\xpatchcmd{\endmdframed}
{\aftergroup\endmdf@trivlist\color@endgroup}
{\endmdf@trivlist\color@endgroup\@doendpe}
{}{}
\makeatother
\begin{document}
Some text before.
\begin{mdframed}[skipabove=3cm, skipbelow=3cm]
Testing 123.
\end{mdframed}
Some text after.
\end{document}