我尝试添加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