贯穿整行的文字

贯穿整行的文字

我不太清楚如何创建这样的东西:跨乳胶线边框的文本。

在此处输入图片描述

编辑1:

\begin{tcolorbox}[enhanced,title=My title,
attach boxed title to top center={yshift*=-3mm},
boxed title style={size=small,colback=lightblue}]
This is a \textbf{tcolorbox}.
\end{tcolorbox}

Edit1代码的输出: 在此处输入图片描述

答案1

欢迎!我们通常通过发布完全可编译的示例来交流,例如

\documentclass{article}
\usepackage[skins]{tcolorbox}
\definecolor{lightblue}{RGB}{80,142,209}
\begin{document}
\begin{tcolorbox}[enhanced,title=My title,coltitle=cyan,
attach boxed title to top center={yshift*=-3mm},colback=white,
colframe=cyan,
boxed title style={size=small,colback=white,colframe=white}]
This is a \textbf{tcolorbox}.
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容