beamer:使用聚光灯突出显示图像的一部分

beamer:使用聚光灯突出显示图像的一部分

使用 beamer,我想使用聚光灯(圆形或矩形)突出显示图像的一部分,如下所示:

在此处输入图片描述

我怎样才能在投影机中实现这一点?

答案1

您可以重复使用我的答案在这里基于杰克的解决方案

\documentclass{beamer}
\usepackage{tikz}

% From https://tex.stackexchange.com/a/445311/141947
\tikzset{
    use page relative coordinates/.style={
        shift={(current page.south west)},
        x={(current page.south east)},
        y={(current page.north west)}
    },
}

\begin{document}

\begin{frame}{title}{subtitle}
    \begin{block}{Block title}
        Some content
    \end{block}
    \includegraphics[width=0.5\textwidth]{example-image-a}
    \begin{tikzpicture}[remember picture,overlay,use page relative coordinates]
        \fill[opacity=0.5,black] (0,0) rectangle (1,1) (0.25,0.5) circle (2cm);
    \end{tikzpicture}
\end{frame}

\end{document}

在此处输入图片描述

相关内容