스크롤 위의 단락은 비머 유지 위치에서 열거됩니다.

스크롤 위의 단락은 비머 유지 위치에서 열거됩니다.

나는 에서 노드의 절대 위치를 지정하는 트릭을 사용하기 전에 이 작업을 수행했거나 tikz슬라이드에서 내용을 수동으로 반복하고 를 사용하여 더 조잡한 작업을 수행했습니다 \phantom. 다음을 수행하는 좋은 방법이 있는지 알고 싶습니다.

아래에 열거된 단락이 있습니다.

Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah,
blah, blah, blah, blah, blah.
 1 Blah
 2 Bleh
 3 Blih

첫 번째 슬라이드에서는 다음과 같이 나타나야 합니다.

Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah,
blah, blah, blah, blah, blah.
 1 Blah
 2 Bleh

다음 슬라이드에서는

Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah,
blah, blah, blah, blah, blah.
 3 Blih

열거가 스크롤되는 것처럼 단락의 위치가 변경되지 않습니다.

이를 수행할 수 있는 좋은 방법이 있나요? , , 또는 이와 beamer유사한 명령 중 일부를 이미 사용한다는 의미입니다 .\onslide\only\item<2->

답변1

overlayarea"점프" 효과를 방지하는 또 다른 옵션은 이러한 경우를 위해 특별히 설계된 환경을 사용하는 것입니다 . 필요에 따라 너비와 높이를 조정합니다.

\documentclass{beamer} 

\begin{document}

\begin{frame}
\begin{overlayarea}{\linewidth}{4cm}
Some test text for the example test text for the example test text for the example test text for the example test text for the example
\begin{enumerate}
\only<1>{
\item First.
\item Second.}
\only<2>{\item[3.] Third.}
\end{enumerate}
\end{overlayarea}
\end{frame}

\end{document} 

결과:

여기에 이미지 설명을 입력하세요

답변2

해결책은 다음과 같습니다.

\documentclass{beamer} 

\begin{document}
\begin{frame}

Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, 
blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah,           
blah, blah, blah,
\begin{enumerate}

\only<1>{%
\item Blah
\item Blah
}  

\only<2>{%
\item[3.] Blah
\item[]
} 
\end{enumerate}

\end{frame}
\end{document} 

생산하는

여기에 이미지 설명을 입력하세요

관련 정보