Beamer y boiboitas

Beamer y boiboitas

Estoy usando beamery boiboitespara las definiciones, teoremas,…. En cada teorema tengo varios elementos y los uso \pausepara hacer la animación. El problema es que el cuadro de la definición, teorema,… sólo aparece al final y no antes de los ítems. ¿Por que sucede? He probado varias formas \onlside<1>, \only<1>, \visible.... ninguna funciona.

Respuesta1

Esto debería funcionar de inmediato:

\documentclass{beamer}
\usepackage{amsthm}

\usepackage{xeboiboites}
  \newbreakabletheorem[
    small box style={draw=blue,fill=blue,line width=0.02cm, rounded corners},   
    big box style={fill=white,draw=blue,rounded corners,line width=0.02cm},
    size=1\textwidth, 
    headfont=\bfseries\large\color{white}
  ]{myproblem}{Problem}{myproblem}


\begin{document}

\begin{frame}

\begin{myproblem}
\begin{itemize}
\item test
\pause
\item test2
\end{itemize}
\end{myproblem}

\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

(Tuve que pedir prestado algún código dehttps://tex.stackexchange.com/a/345713/36296ya que estas preguntas no muestran cómo usar xeboiboites)

información relacionada