\documentclass{beamer}
\begin{document}
\begin{frame}[t]{Proverbs}
think. Thus (correct)\newline
\pause
think.\pause\ Thus (wrong)
\end{frame}
\end{document}
이전 문장 뒤에 가 있는 경우 다음 문장의 올바른 문장 공간 끝을 얻는 방법은 무엇입니까 \pause
?
답변1
{}
다음 이후에 사용 \pause
:
\documentclass{beamer}
\begin{document}
\begin{frame}[t]{Proverbs}
think. Thus (correct)\newline
\pause
think.\pause{} Thus (correct)
\end{frame}
\end{document}