如何使用 \tcbline

如何使用 \tcbline

为什么我不能正确使用\tbclinetcolorbox包的功能(请参阅CTAN 上提供的文档第 198 页)?

您可以在 Overleaf 上找到我的试用版本这里

谢谢!

答案1

tcbline功能需要skins库,即

\usepackage[skins]{tcolorbox}

或者

\usepackage{tcolorbox}
\tcbuselibrary{skins}

本示例有效:

\documentclass[a4paper,12pt]{article}
\usepackage[skins]{tcolorbox}
\begin{document}
    \tcbset{enhanced,colframe=blue!50!black,colback=white}
    \begin{tcolorbox}[title=tcbline example]
        This is a \textbf{tcolorbox}.
        \tcbline
        Here, you have the middle part of the box.
        \tcbline
        And here is the lower part of the box.
    \end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容