我正在尝试使用 Beamer 和 Madrid 主题创建定理样式,但我不知道如何不将其放在框中。我尝试的所有内容都只是自动放在框中。另外,我不想在标题和文本之间换行。有什么想法吗?非常感谢。
答案1
您可以修改beamer中定理的定义:
\documentclass{beamer}
\usecolortheme{orchid}
\makeatletter
\setbeamertemplate{theorem begin}{%
% \begin{\inserttheoremblockenv}% removed
{%
\inserttheoremname
\ifx\inserttheoremaddition\@empty\else\ (\inserttheoremaddition)\fi%
\space% new
}%
}
\setbeamertemplate{theorem end}{}
\makeatother
\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}