我想制作一个infobox
包含图片的包装。对于bclogo
包装,我最喜欢整体外观,但除了插入自己的图像作为徽标或盒子边框外,我找不到其他插入图像的选项。有没有办法在该包装中插入图形?
否则,是否有一个包可以让我制作漂亮的信息框,并且可以包含图像?
\documentclass[12pt,a4paper,twocolumn]{article}
\usepackage{tikz}
\usepackage[tikz]{bclogo}
\begin{document}
\begin{bclogo}[couleur=yellow!20, epBord=2, arrondi=0.2, logo=\bcinfo,marge=8, ombre=true, blur, couleurBord=yellow!60, barre=snake, tailleOndu=3]{Liver} The liver is the biggest gland of the human body
\end{bclogo}
\end{document}
答案1
图像在bclogo
盒子里工作没有任何问题:
\documentclass[12pt,a4paper,twocolumn]{article}
\usepackage{tikz}
\usepackage[tikz]{bclogo}
\begin{document}
\begin{bclogo}[couleur=yellow!20, epBord=2, arrondi=0.2, logo=\bcinfo,marge=8, ombre=true, blur, couleurBord=yellow!60, barre=snake, tailleOndu=3]{Liver} The liver is the biggest gland of the human body
\includegraphics[width=3cm]{example-image-duck}
\end{bclogo}
\end{document}
当然,不能将图像放置在浮动环境中figure
。如果您希望在图像下方添加标题,请使用包\captionof
中的宏caption
。