유인물 모드가 포함된 비머의 부록 섹션

유인물 모드가 포함된 비머의 부록 섹션

프레젠테이션을 만들고 마지막에 슬라이드 몇 개를 부록으로 추가하고 싶습니다. 일반 슬라이드에는 "<+->" 전환이 있어야 하지만 부록 슬라이드는 유인물과 같아야 합니다. 이 작업을 수행하는 쉬운 방법이 있나요?

답변1

이런 뜻인가요?

부록이 포함된 비머 프리젠테이션

\documentclass{beamer}

\begin{document}

\beamerdefaultoverlayspecification{<+->}                % uncomment to uncover everything step-wise

\begin{frame}{A Frame}
  \begin{itemize}
      \item One
      \item Two
  \end{itemize}
\end{frame}

\beamerdefaultoverlayspecification{<1->}                % uncomment to uncover everything step-wise
\appendix
\begin{frame}{\appendixname}
  \begin{itemize}
      \item Additional One
      \item Additional Two
  \end{itemize}
\end{frame}

\end{document}

답변2

또는 프레임당 기준으로 프레임 전환을 결정할 수 있습니다.

동일한 전환 유형을 사용하여 연속적으로 꽤 많은 프레임이 있는 경우 cfr의 솔루션이 더 좋습니다. 나는 일반적으로 전환이 있는 프레임 중 일부를 사용하고 스타일러스로 쓰기 위해 다른 프레임을 사용하므로 전환할 때마다 쓴 모든 내용이 손실되므로 이러한 프레임에 전환을 원하지 않습니다.

\documentclass{beamer}

\begin{document}


\begin{frame}[<+->]{A Frame}
  \begin{itemize}
      \item One
      \item Two
  \end{itemize}
\end{frame}


\appendix
\begin{frame}[<1->]{\appendixname}
  \begin{itemize}
      \item Additional One
      \item Additional Two
  \end{itemize}
\end{frame}

\end{document}

[<1->]다음을 사용하지 않는 한 이것이 기본 동작이므로 두 번째 프레임에서는 생략할 수 있습니다.\beamerdefaultoverlayspecification{<+->}

관련 정보