我正在使用 Smartdiagram 包创建气泡图。我想使用 \uncover 制作多张幻灯片来解释每个气泡。我尝试了以下代码。它有效,但我收到缺少 tikz 分号的错误,我找不到解决方法。有什么建议吗?
\documentclass{beamer}
\usepackage{smartdiagram}
\begin{document}
\begin{frame}
\smartdiagram[bubble diagram]{%
Center,%
\uncover<2>{Bubble 1},%
\uncover<3>{Bubble 2},%
\uncover<4>{Bubble 3},%
\uncover<5>{Bubble 4},%
\uncover<6>{Bubble 5}%
}
\end{frame}
\end{document}
答案1
问题显然与 有关\uncover
。您可能希望改用以下内容:
\documentclass{beamer}
\usepackage{smartdiagram}
\begin{document}
\begin{frame}
\smartdiagramanimated[bubble diagram]
{Center, A, B, C, D, E, F, G}
\end{frame}
\end{document}
如果你真的希望每个气泡只显示一次,你可以复制\smartdiagramanimated
命令http://www.ctan.org/pkg/smartdiagram并应用一些小的更改,或者你可能需要询问包作者https://tex.stackexchange.com/users/13304/claudio-fiandrino添加此功能。我还没有尝试过,但关键可能是<\adv->
。