tcolorbox 中的“跳过之前”和“跳过之前平衡”有什么区别?

tcolorbox 中的“跳过之前”和“跳过之前平衡”有什么区别?

我希望禁用颜色框前的空白。在阅读文档时tcolorbox,我发现了以下两个选项:

在此处输入图片描述 在此处输入图片描述

这里的解释对我来说有点太技术性了,我不明白它们之间的区别。我该如何选择它们?

答案1

这里有一个例子可以说明这两个选项之间的区别。

\documentclass{minimal}
\usepackage{tcolorbox}

\begin{document}

text
\begin{tcolorbox}[before skip=0pt]
before skip
\end{tcolorbox}

text with depth
\begin{tcolorbox}[before skip=0pt]
before skip
\end{tcolorbox}

text
\begin{tcolorbox}[before skip balanced=0pt]
before skip balanced
\end{tcolorbox}

text with depth
\begin{tcolorbox}[before skip balanced=0pt]
before skip balanced
\end{tcolorbox}

\end{document}

跳过示例之前

前两种情况忽略基线且与前一个框的间距为 0pt,而后两个例子与前一个基线的间距为 0.3\baselineskip。

相关内容