我在修改 Metroplis 主题中的块环境时遇到了问题。
以下示例呈现为
\documentclass[10pt,xcolor=dvipsnames]{beamer}
\usetheme{metropolis}
\begin{document}
\begin{frame}
\begin{alertblock}{Title}
Inhalt...
\end{alertblock}
\end{frame}
\end{document}
现在添加行
\setbeamercolor{block title}{fg=RoyalBlue,bg=white}
呈现为
因此,当背景变为白色时,图块的位置似乎也发生了变化,这是我不希望的。此外,我想在标题和下面的文本之间添加一些空间。
有人能帮助我吗?此外,如果有人能向我解释如何定义如下所示的块环境,我将不胜感激:
非常感谢!
答案1
如果您想更改警报块的颜色,请使用\setbeamercolor{block title alerted}{...}
:
\documentclass[10pt,xcolor=dvipsnames]{beamer}
\usetheme{moloch}% modern fork of the metropolis theme
\setbeamercolor{block title alerted}{%
use={block title, alerted text},
bg=white,
fg=RoyalBlue
}
\begin{document}
\begin{frame}
\begin{alertblock}{Title}
Inhalt...
\end{alertblock}
\end{frame}
\end{document}