\documentclass{beamer}
\begin{document}
\begin{frame}[t]{Proverbs}
think. Thus (correct)\newline
\pause
think.\pause\ Thus (wrong)
\end{frame}
\end{document}
Como obter um espaço correto no final da frase para a próxima frase se a anterior for seguida por \pause
?
Responder1
Usar {}
depois \pause
:
\documentclass{beamer}
\begin{document}
\begin{frame}[t]{Proverbs}
think. Thus (correct)\newline
\pause
think.\pause{} Thus (correct)
\end{frame}
\end{document}