mdframed 和 skipbelow

mdframed 和 skipbelow

网上有很多关于skipbelow这个mdframed包裹的问题。对我来说,这skiplow 问题未解决。我的系统上的软件包版本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}

在此处输入图片描述

相关内容