我希望每次出现框架时,它都会带有一个注释“frame”,如何在 beamer 上创建这样的东西!
这是我希望实现的图!任何建议或者一些链接都可以帮我实现。
答案1
<1->
您可以简单地使用列将块和注释彼此相邻放置 - 您还可以使用等指定覆盖。
你应该已经知道如何绘制云了你之前的问题,所以我把这部分留给你作为练习。
\documentclass{beamer}
\usetheme{Darmstadt}
\begin{document}
\begin{frame}
\begin{columns}
\begin{column}<1->{.6\textwidth}
\begin{block}{title}
content
\end{block}
\end{column}
\begin{column}<1->{.3\textwidth}
Note
\end{column}
\end{columns}
\begin{columns}
\begin{column}<2->{.6\textwidth}
\begin{alertblock}{title}
content
\end{alertblock}
\end{column}
\begin{column}<2->{.3\textwidth}
Note
\end{column}
\end{columns}
\begin{columns}
\begin{column}<3->{.6\textwidth}
\begin{exampleblock}{title}
content
\end{exampleblock}
\end{column}
\begin{column}<3->{.3\textwidth}
Note
\end{column}
\end{columns}
\end{frame}
\end{document}