ビーマーとボイボイツ

ビーマーとボイボイツ

定義、定理などに と をbeamer使用しています。各定理には複数の項目があり、アニメーションの作成に使用します。問題は、定義、定理などのボックスが項目の前にではなく、最後にのみ表示されることです。なぜこのようなことが起こるのでしょうか。いくつかの方法を試しましたが、どれもうまくいきません。boiboites\pause\onlside<1>\only<1>\visible

答え1

これはすぐに使えるはずです:

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

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

(コードの一部を拝借しましたhttps://tex.stackexchange.com/a/345713/36296この質問では使用方法が示されていないためxeboiboites)

関連情報