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