是否可以使用 tcolorbox 套件製作這個提示盒?

是否可以使用 tcolorbox 套件製作這個提示盒?

是否可以使用 tcolorbox 套件(或任何其他方式)製作下圖中的「提示框」?在此輸入影像描述 我在 tcolorbox 方面的能力嚴重缺乏,因此非常感謝任何幫助。

預先感謝您提供的任何幫助。

答案1

以下是我們如何使用 a 來做到這一點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}

在此輸入影像描述

相關內容