答案1
在链接问题的帮助下,我成功了。不过,我认为使用覆盖层而不是水印的情况会略有不同。
\documentclass{beamer}
\usetheme{Boadilla}
\usepackage{lipsum}
\usepackage{tcolorbox}
\tcbuselibrary{skins,hooks}
\usetikzlibrary{shadows}
\usetikzlibrary{patterns}
\tcbset{imagebox/.style={enhanced, colframe=structure,fonttitle=\bfseries,beamer, overlay={
\begin{tcbclipframe}
\node[anchor=west,inner sep=0] at (frame.center) {\includegraphics[width=0.5\textwidth]{mushrooms}};
\end{tcbclipframe}
}}}
\begin{document}
\begin{frame}
\frametitle{A color box with half a background image}
\begin{tcolorbox}[imagebox ,title={The title}]
\begin{minipage}{0.45\linewidth}
Test this box's content minipage if it scales properly
\end{minipage}
\end{tcolorbox}
\end{frame}
\end{document}
结果如下: