一時停止した2つの同じスライド

一時停止した2つの同じスライド

次のコード:

\begin{frame}\frametitle{Title}
  \begin{itemize}[<+->]
  \item 1st
  \item 2nd
  \end{itemize}
  \vfill\pause
  Bottom
\end{frame}

スライドを 4 つ (3 つではなく) 生成します。

  1. Titleそして1st
  2. Title、、1st2nd
  3. 前回と同じ
  4. すべて (Title1st2ndBottom

を削除すると\vfill\pause、スライドが2つ(3つではなく)表示されbottom両方:

  1. Title、、1stBottom
  2. すべて (Title1st2ndBottom

3枚のスライドを取得するにはどうすればいいですか?

答え1

Hafid Boukhoulda 氏と同様に、私は\onlybut with argumentを使うことを提案します<.(1)>。これでうまくいきます。これを「今だけ」と考えることもできます。私はこのトリックを samcarter 氏から学びました。

\documentclass{beamer}

\begin{document}
\begin{frame}[t]
\frametitle{Title}
  \begin{itemize}[<+->]
  \item 1st
  \item 2nd
  \end{itemize}

 \vfill

 \only<.(1)> {Bottom}
\end{frame}
\end{document}

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

\uncoverジャンプを避けるために導入したアライメントをドロップすることができます[t]

\documentclass{beamer}

\begin{document}
\begin{frame}
\frametitle{Title}
  \begin{itemize}[<+->]
  \item 1st
  \item 2nd
  \end{itemize}

 \vfill

 \uncover<.(1)> {Bottom}
\end{frame}
\end{document}

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

答え2

\documentclass{beamer}

\begin{document}
\begin{frame}\frametitle{Title}
  \begin{itemize}[<+->]
  \item 1st
  \item 2nd
  \end{itemize}

 %\pause

 \vfill

 \only<3> {Bottom}
\end{frame}
\end{document}

関連情報