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