是否可以使用 tcolorbox 包制作这个提示框?

是否可以使用 tcolorbox 包制作这个提示框?

是否可以使用 tcolorbox 包(或任何其他方式)制作下图中的“提示框”?在此处输入图片描述 我在 tcolorbox 方面的能力严重不足,因此非常感谢任何帮助。

提前感谢您的任何帮助。

答案1

以下是我们如何用 来实现的tcolorbox

\documentclass{article}
\usepackage[skins]{tcolorbox}

\usepackage{lipsum}

\newtcolorbox{mytcolorbox}[1]{
   enhanced,
   colback=white,
   colframe=gray,
   coltitle=black,
   fonttitle=\bfseries\LARGE,
   detach title,
   boxrule=2pt,
   leftrule=0pt,
   top=1mm,
  attach title to upper={\par},
   sharp corners,
   borderline west={5pt}{0pt}{red!70!blue},
   title=#1
}

\begin{document}
\begin{mytcolorbox}{Tip Box Title}
 \lipsum[1-2]
\end{mytcolorbox}
\end{document}

在此处输入图片描述

相关内容