tcolorbox 边缘的颜色不同

tcolorbox 边缘的颜色不同

我正在尝试制作一个 tcolorbox,其右边框为蓝色,上边框为绿色,但似乎无法在网上或手册中找到有关单独线条颜色的任何选项。这可能吗?

答案1

您可以使用库skins在框的每一侧添加单独的边框;请参阅文档

这是一个小例子。

\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\begin{document}
\begin{tcolorbox}[
    sharp corners,
    boxrule=0mm,
    enhanced,
    borderline north={2pt}{0pt}{green},
    borderline east={2pt}{0pt}{blue},
]
A box with a blue right border and a green top border.
\end{tcolorbox}
\end{document}

相关内容