我通常使用带有 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}