Latex Beamer:带有剪辑背景图像的块

Latex Beamer:带有剪辑背景图像的块

在 Latex beamer 中创建一个类似于我整理的这个示例的新盒子布局的最佳方法是什么。

我想为块定义一个背景图像,该图像缩放到正确的大小但在圆边处被剪裁。

也许有人可以给我指出关于如何重构块环境的正确方向。

在此处输入图片描述

答案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}

结果如下:

在此处输入图片描述

相关内容