일시 정지가 있는 두 개의 동일한 슬라이드

일시 정지가 있는 두 개의 동일한 슬라이드

다음 코드:

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

3개가 아닌 4개의 슬라이드를 생성합니다.

  1. Title그리고1st
  2. Title, 1st,2nd
  3. 전작과 동일
  4. 모든 것 ( Title, 1st, 2nd, Bottom)

을 제거하면 \vfill\pause3개가 아닌 2개의 슬라이드가 생성되고 bottom다음 위치에 나타납니다 .둘 다:

  1. Title, 1st,Bottom
  2. 모든 것 ( Title, 1st, 2nd, Bottom)

슬라이드 3개를 얻으려면 어떻게 해야 하나요?

답변1

Hafid Boukhoulda처럼 나는 트릭을 수행하는 \only논증을 사용하는 것을 제안합니다. <.(1)>이것을 "지금뿐"이라고 생각하시면 됩니다. 나는 이 트릭을 샘카터에게서 배웠다.

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

관련 정보