So I want to create a presentation where each bullet point appears on click as in PowerPoint. I've seen a variety of solutions including the
\break
Command.
Here's a sample of the code
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{enumerate}
\uncover<1->{\item Hi}
\uncover<2->{\item Hello}
\uncover<3->{\item Hi again}
\uncover<4->{\item Hello again}
\end{enumerate}
\end{frame}
\end{document}
Is there a more efficient way to do this i.e. can I do it so that it doesn't create individual slides?
