Consider the following MWE in which I need to add some texts below itemize environment and I use \beamerdefaultoverlayspecification{<+->}. When I add \pause above the texts, the result is that the slide with the two items is shown twice, which is undesirable. How can one show the slide only once?
\documentclass{beamer}
\beamertemplatenavigationsymbolsempty
\beamerdefaultoverlayspecification{<+->}
\begin{document}
\begin{frame}{A MWE}
\begin{itemize}
\item item 1
\item item 2
\end{itemize}
\pause
Some texts.
\end{frame}
\end{document}
\onslide<+->instead of\pauseshould also work for your case. I have therefore voted to close your question as a duplicate to the previously mentioned one. – leandriis Nov 21 '20 at 22:27