如何更改 tcolorbox 的边框尺寸

如何更改 tcolorbox 的边框尺寸

给出以下最小工作示例:

\documentclass{article}
\usepackage[many]{tcolorbox}
\begin{document}
\begin{tcolorbox} foobar \end{tcolorbox}
\end{document}

在此处输入图片描述

如何改变红色标示的边框大小?

答案1

left您可以使用、righttop和键调整空格bottom

这意味着您可以执行以下任一操作\tcbset{top=1mm,left=1mm},或者直接将密钥提供给环境:

\documentclass{article}
\usepackage[many]{tcolorbox}
\begin{document}
\begin{tcolorbox}[left=1mm,top=1mm] foobar \end{tcolorbox}
\end{document}

输出

还有关键boxsep的是添加空格添加到leftright、和适当的位置。此键的初始值为,这意味着如果您希望顶部边距恰好为,则 和 的总和应为 ,top依此类推。因此,在上面的示例中,顶部和左侧边距都是总和。bottommiddle1mm1mmtopboxsep1mm2mm

相关内容