Tcolorbox:上下部分之间的边距

Tcolorbox:上下部分之间的边距

哪个选项控制框内上下部分之间的垂直间距?

\documentclass{article}
\usepackage{tcolorbox}

\begin{document}

\begin{tcolorbox}
    This is another \textbf{tcolorbox}.
    \tcblower
    This is the lower part of the box.
\end{tcolorbox}

\end{document}

答案1

tcolorbox 文档的第 11 页对长度进行了有用的概述:

在此处输入图片描述

这意味着你想要改变middle密钥:

\documentclass{article}
\usepackage{tcolorbox}

\begin{document}

\begin{tcolorbox}[middle=10pt]
    This is another \textbf{tcolorbox}.
    \tcblower
    This is the lower part of the box.
\end{tcolorbox}

\end{document}

相关内容