实现类似构造的定理,无需新定理

实现类似构造的定理,无需新定理

我试图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}

(马德里主题使其更加明显。)

投影机中的块

相关内容