Beamer 动态与 tcolorbox

Beamer 动态与 tcolorbox

如何让 tcolorbox 包的框出现在 beamer 演示文稿中?例如,我希望框与第 3 点一起出现...

\documentclass[10pt,xcolor={usenames,dvipsnames},graphics]{beamer}
\usetheme{Frankfurt}
\usecolortheme{seahorse}

\setbeamercovered{transparent}
\usepackage{tcolorbox}
\usepackage{xcolor}

\begin{document}
 \begin{frame}{A slide}
 \begin{itemize}
 \item<1-> Point 1
 \item<2-> Point 2
 \item<3-> Point 3
 \begin{tcolorbox}
  A box with text               
 \end{tcolorbox}
 \begin{itemize}
 \item<4-> Point 4
 \end{itemize}
 \end{frame}

\end{document}

答案1

您有一个虚假的\begin{itemize}。删除它允许代码编译,并且框将根据需要出现第三个点。

\documentclass[10pt,xcolor={usenames,dvipsnames},graphics]{beamer}
\usetheme{Frankfurt}
\usecolortheme{seahorse}

\setbeamercovered{transparent}
\usepackage{tcolorbox}
\usepackage{xcolor}

\begin{document}
 \begin{frame}{A slide}
 \begin{itemize}
 \item<1-> Point 1
 \item<2-> Point 2
 \item<3-> Point 3
 \begin{tcolorbox}
  A box with text
 \end{tcolorbox}
 \item<4-> Point 4
 \end{itemize}
 \end{frame}

\end{document}

点 3 中的方框

相关内容