我希望添加区块普雷内托beamer 主题。我无法让框架围绕着块。
\documentclass[12pt]{beamer}
\usepackage{config/presento}
\begin{document}
\begin{frame}
\frametitle{Frame title}
\begin{block}{Observation 1}
Simmons Hall is composed.
\end{block}
\begin{exampleblock}{Observation 2}
Simmons Dormitory is composed of brick.
\end{exampleblock}
\begin{alertblock}{Conclusion}
Simmons Hall $\not=$ Simmons Dormitory.
\end{alertblock}
\end{frame}
\end{document}
我将如何使用 Presento beamer 主题中的标准块,就像在马德里等其他主题中一样。应在文件中添加/删除哪行.sty
以获取标准块(如警报、示例和基本块)周围的框架。提前致谢。
答案1
框已经存在,但它们的颜色是不可见的。要使它们可见,例如,您可以使用\usecolortheme{orchid}
获取许多标准主题中使用的颜色。
% !TeX TS-program = xelatex
\documentclass[12pt]{beamer}
\usepackage{presento}
\usecolortheme{orchid}
\begin{document}
\begin{frame}
\frametitle{Frame title}
\begin{block}{Observation 1} Simmons Hall is composed.
\end{block}
\begin{exampleblock}{Observation 2}
Simmons Dormitory is composed of brick.
\end{exampleblock}
\begin{alertblock}{Conclusion}
Simmons Hall $\not=$ Simmons Dormitory.
\end{alertblock}
\end{frame}
\end{document}