我试图theorem
在我的演示文稿中实现如图beamer
所示的表现形式。
目前,我正在newtheorem
为 中的每个这样的构造定义一个环境preamble
,然后使用它,如下所示:
%in preamble
\newtheorem{trial}{A trial}
%in the body
\begin{frame}
\begin{trial}
Just a trial
\end{trial}
\end{frame}
我能找到更通用的方法来实现这一点吗?我的意思是,我不想\newtheorem
在 中定义 50,但仍想拥有这种双色构造。只需使用定理就可以在上部preamble
得到。Theorem:trial
答案1
我认为您正在寻找block
来自的环境beamer
。它记录在手册的第 12.3 节(针对版本 3.31)。
\documentclass{beamer}
%\url{http://tex.stackexchange.com/q/147398/86}
\usetheme{Madrid}
\begin{document}
\begin{frame}
\begin{block}{Block Title}
Block body
\end{block}
\end{frame}
\end{document}
(马德里主题使其更加明显。)