投影机中的定理框

投影机中的定理框

我通常使用带有 Warsaw 主题的 beamer,它将定理(和其他东西)放在框中。现在我将主题切换为 Marburg,但我仍然想保留框。如何做到这一点?

答案1

事实上,即使使用Marburg主题,你的定理仍然在盒子里,但你看不到它们,因为它们的颜色未定义。Warsaw使用orchid颜色主题中的颜色,因此你也可以将其添加到演示文稿中。

\documentclass{beamer}

\usetheme{Marburg}
\usecolortheme{orchid}

\begin{document}
    \begin{frame}{A theorem in a box}
        \begin{theorem}
         Let $r, s$ be integers such that gcd$(r, s)=1$. 
        Given integers $a,b$, there exists unique 
        $x <rs$ such that 
        \end{theorem} 
    \end{frame} 
\end{document}

在此处输入图片描述

在此处输入图片描述

相关内容