Tcolorbox 居中字幕

Tcolorbox 居中字幕

中是否有用于对齐字幕的选项键tcolorbox?我在软件包手册中没有看到它。我能做的最好的就是: 。我正在寻找一种在选项\tcbsubtitle{\centering{My centered subtitle}}中定义它的方法。\tbcset

答案1

尝试一下subtitle style={halign=center}

在此处输入图片描述

\documentclass{article}
\usepackage{tcolorbox}
\tcbset{subtitle style={halign=center}}
\begin{document}
\begin{tcolorbox}[title=My title]
\tcbsubtitle{My subtitle}
Further text.
\end{tcolorbox}
\end{document}

不相关的注释:\centering不是接受参数的宏,因此应该将其用作{\centering ..},而不是\centering{..}

相关内容