[Tex/LaTex] How to compile a beamer presentation with pauses in same page

beamercompilingpausepresentations

I want to compile my presentation, but as I have the pauses codes,
\begin{itemize}
\item <1- | alert@1>
\item <2- | alert@2>
\end{itemize}
I wanted to do it in the same page.
I was looking for a way to compile it and I found this solution:
\documentclass[handout]{beamer}
But after doing it, I lost all my pause in the presentation.
So, there is any way to compile the presentation page in one page and still have a pause mode?
Thank you.

Best Answer

No. There is no way to do that. At least, there is no way to do that with beamer or any TeX software I'm aware of. The pauses just are separate pages in the output PDF. When you display the slides, a pause corresponds to a change from one page of the PDF to the next. So, if you have n pauses on a slide, you need n+1 pages in the PDF. Remove the page breaks and you remove the pauses. These are not distinct things. That is just how the pauses are implemented in the PDF.

EDIT

If you in fact want what Sigur described - that is, the first item on the first slide only, the second on the second slide only and so on - that is straightforward:

\documentclass{beamer}

\begin{document}
  \begin{frame}{A Title}
    \begin{itemize}[<+| alert@+>]
        \item This item appears only on the first slide.
        \item This item appears only on the second slide.
    \end{itemize}
  \end{frame}
\end{document}

This puts the first item only on the first slide and the second item only on the second slide. However, it does this by using two pages in the output PDF:

Item per slide