带有图像的 Beamer 盒子 - 如何在乳胶中实现它?

带有图像的 Beamer 盒子 - 如何在乳胶中实现它?

我希望在左上角有一个带圆圈图像的彩色框(见图)。如何在 LaTeX 中为 Beamer 演示文稿实现此效果在此处输入图片描述

答案1

\documentclass{article}
\usepackage[most]{tcolorbox}
\usepackage{lmodern}
\usepackage{lipsum}

\begin{document}

\begin{tcolorbox}[
notitle,
enhanced,
overlay={\path[circle, fill stretch image*={width=1cm}{frog}] ([xshift=2cm]frame.north west) circle(1cm);},
top=1cm,
]

\lipsum[2]
\end{tcolorbox}
\end{document}

在此处输入图片描述

相关内容