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