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}