非常简单的 tcolorbox,标题中有图片

非常简单的 tcolorbox,标题中有图片

我尝试添加picture.png到的标题中tcolorbox。我想将此图片放在底部标题带中。

这是我的盒子:

\newtcolorbox{SimpleBox}{
  breakable,
  enhanced,
  colback=red!0!white,
  colframe=red!75!black,
  title={\large Simple box},
}

我该如何添加picture.png

当我}在行前添加

\hfill\smash{\raisebox{-11pt}{\includegraphics[width=1cm,height=1cm]{picture.png}}}

我遇到了错误...

答案1

您必须将其添加到title选项中:

\documentclass{article}

\usepackage{mwe} % just for the example

\usepackage[most]{tcolorbox}

\newtcolorbox{SimpleBox}{%
  breakable,
  enhanced,
  colback=red!0!white,
  colframe=red!75!black,
  title={\large Simple box\hfill%
    \smash{\raisebox{-11pt}{\includegraphics[width=1cm,height=1cm]{example-image}}}},
}

\begin{document}

\begin{SimpleBox}
Some Text
\end{SimpleBox}

\end{document} 

在此处输入图片描述

example-image你的picture.png

相关内容