Me gustaría seguir usando la numeración para theorem
, definition
excepto solo para `solución cuando el estilo ams está habilitado. Por favor alguna pista.
\documentclass{beamer}
\setbeamertemplate{theorems}[ams style]
\begin{document}
\begin{frame}
\begin{theorem}
Nice proposition.
\end{theorem}
\begin{solution}
Foo.
\end{solution}
\begin{example}
Baz.
\end{example}
\end{frame}
\end{document}
La salida deseada será
Theorem 1
Solution
Example 2
Respuesta1
Como truco rápido, podrías usar un proyector normal block
para la solución:
\documentclass{beamer}
\setbeamertemplate{theorems}[ams style]
\setbeamerfont{block title}{series=\bfseries}
\renewenvironment<>{solution}{\begin{block}#1{Solution}\itshape}{\end{block}}
\begin{document}
\begin{frame}
\begin{theorem}
Nice proposition.
\end{theorem}
\begin{solution}
Foo.
\end{solution}
\begin{example}
Baz.
\end{example}
\end{frame}
\end{document}