Presento ビーマーテーマにブロックを追加する

Presento ビーマーテーマにブロックを追加する

ブロックを追加したいプレゼント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}    

Madrid などの他のテーマと同様に、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}    

ここに画像の説明を入力してください

関連情報