我正在尝试在投影仪演示文稿中执行以下操作。
Slide 1: This is
Slide 2: This is a test
Slide 3: This is BLUEBOXa testBLUEBOX
(BLUEBOX 一个测试 BLUEBOX 应该写为“一个测试”,并用蓝色框括起来。)
这是我的 MWE:
\documentclass{beamer}
\usepackage{pgfplots}
\begin{document}
\begin{frame}
This is
\pause
a test\\
\pause
{This is\tikz[baseline]{
\node[fill=blue!20,anchor=base] (t1)
{a test};}
}
\end{frame}
\end{document}
前两张幻灯片还可以,但我不知道如何在暂停命令后让第三张幻灯片变成蓝色。在这里使用 PGF/TikZ 有意义吗?有没有更简单的方法?
答案1
以下方法对您有用吗?
\documentclass{beamer}
\usepackage{tcolorbox}
\definecolor{mycolor}{RGB}{255,255,255}
\tcbset{colframe=white,colback=white,nobeforeafter}
\begin{document}
\begin{frame}
This is \pause
\only<3>{\definecolor{mycolor}{RGB}{5,61,245}}
\tcbox[colback=white,colframe=mycolor,nobeforeafter,tcbox raise base]{a test}
\end{frame}
\end{document}