강의 노트에 사용하고 싶고 \pause
, 일시 정지할 때마다 다른 노트를 찾아볼 수 있는 노트 전용 버전을 원합니다. \note<.>{"my note"}
'.'에 대한 이해가 있기 때문에 구문을 사용하려고 생각했습니다 . 현재 beamerpauses
카운터를 참조한다는 것입니다. 하지만 이 예에서처럼 이렇게 하면 원하는 효과를 얻을 수 없습니다. 사실 나는 모든 메모를 얻지 못했습니다.
\documentclass[t, 14pt]{beamer}
\setbeameroption{show only notes}
\begin{document}
\begin{frame}
\begin{itemize}
\item First things first
\note[item]<.>{Say ``first things first''}
\pause
\item Second things second
\note[item]<.>{Say ``second things second''}
\pause
\item Third things third
\note[item]<.>{Say nothing...}
\pause
\item 4th thing
\end{itemize}
\end{frame}
\end{document}
그 결과는 다음과 같습니다.
첫 번째 메모("먼저 먼저"라고 말하세요)가 존재하지 않는다는 점에 주목하세요. 두 번째 메모는 두 번째 글머리 기호 앞에 있습니다.
의견에서 제안한대로 \pause
명령을 삭제하고 명령을 사용하는 방법 을 조사했습니다 .\note<+>
이 답변, 그러나 슬라이드에서는 일시 정지가 아닌 내 노트에서만 일시 정지로 이어집니다.
일시 정지 명령당 하나의 메모를 작성하려면 어떻게 해야 합니까? 프레젠테이션 모드와 노트 모드 모두에서 일시 중지하려면 어떻게 해야 합니까?
또한 내가 사용 \note<1>{...}
하고\note<2>{...}
하다원하는 효과를 얻으세요. 단지 내가 얼마나 많은 \pause
오버레이 명령을 했는지 추적하고 싶지 않아서 물어봐야 할 것 같아요
어떻게 지내세요?용이하게일시정지 명령당 하나의 메모가 있나요?
답변1
대신에 다음 \pause
에 대한 오버레이 사양을 사용할 수 있습니다 itemize
.
\documentclass[t, 14pt]{beamer}
\setbeameroption{show only notes}
\begin{document}
\begin{frame}
\begin{itemize}[<+->]
\item First things first
\note<.>[item]{Say ``first things first''}
\item Second things second
\note<.>[item]{Say ``second things second''}
\item Third things third
\note<.>[item]{Say nothing...}
\item 4th thing
\end{itemize}
\end{frame}
\end{document}