我正在 Beamer 演示文稿中创建描述性图表。我希望它们逐步显示(描述标题和描述都应在一次单击中显示)。MWE 是
\documentclass[border=10pt]{beamer}
\usepackage{smartdiagram}
\begin{document}
\begin{frame}
\smartdiagramanimated[descriptive diagram]{
{Set up,The set up operation consist of..},
{Run, {After having set up the program, you must run..}},
{Analyse, You must check what did with analytical tools like..},
{Modify, {After the analysis, you can still modify or add..}},
}
\end{frame}
\end{document}
- 我怎样才能实现逐步(如上所述)的叠加效果?
- 如何调整描述块的高度?
答案1
快速解决方法,同时显示标题和正文:
\documentclass[border=10pt]{beamer}
\usepackage{smartdiagram}
\begin{document}
\begin{frame}<2,4,6,8>
\smartdiagramanimated[descriptive diagram]{
{Set up,The set up operation consist of..},
{Run, {After having set up the program, you must run..}},
{Analyse, You must check what did with analytical tools like..},
{Modify, {After the analysis, you can still modify or add..}},
}
\end{frame}
\end{document}