带黄色边框的彩盒

带黄色边框的彩盒

我该如何修改才能产生这样的东西? 在此处输入图片描述

我尝试了此代码用于 colorbox,但我看不到黄色边框

\newtcolorbox{colorbox}[1]{
    breakable,
    title=#1,
    colback=white,
    colbacktitle=green!20!white,
    coltitle=black,
    fonttitle=\bfseries,
    bottomrule=0pt,
    toprule=0pt,
    leftrule=2pt,
    rightrule=0pt,
    titlerule=0pt,
    arc=0pt,
    outer arc=0pt,
    colframe=red   }

答案1

您显示的黄线可能是伪像,因为它们不是用您的代码绘制的(rightrule=0pt,......)。

如果您想看到它们,请以一定的宽度绘制它们,如果您想要左边的红线,请用额外的线绘制它们borderline

\documentclass[border=2mm]{standalone}
\usepackage[most]{tcolorbox}
\usepackage{lipsum}

\newtcolorbox{mycolorbox}[1]{
    enhanced,
    breakable,
    title=#1,
    colback=white,
    colbacktitle=green!20!white,
    coltitle=black,
    fonttitle=\bfseries,
    boxrule=.5pt,
    arc=0pt,
    outer arc=0pt,
    colframe=yellow!80!orange,
    borderline west={2pt}{0pt}{red}   }

\begin{document}

\begin{mycolorbox}{Remarque}
\lipsum[1]
\end{mycolorbox}
\end{document}

在此处输入图片描述

相关内容