tcolorbox 的文本与标题在同一行开始?

tcolorbox 的文本与标题在同一行开始?

tcolorbox 看起来像这样:

**Title**

The text begins here, that is on a line below the title line ...

我想要的是:

 **Title**  The text begins here, that is on the same line as the title ...

我刚刚在 3.80 版手册的第 19 页找到了答案。(我错误地查看了 2.80 版,结果发现它只是一个定理。)

答案1

使用detach title

\documentclass{article}
\usepackage{tcolorbox}

\begin{document}
\begin{tcolorbox}[detach title,
                  fonttitle=\bfseries,coltitle=red,
                  before upper={\tcbtitle\quad},
                  title=My title]
This is a \textbf{tcolorbox}.
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容