在 Presento 投影機主題中新增區塊

在 Presento 投影機主題中新增區塊

我想添加塊呈現投影機主題。我無法讓框架圍繞著塊。

\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}    

在此輸入影像描述

相關內容