I was wondering if you know how to make a break between the main text and the first item in enumerate. I tried with
\pause
, but it did not work.Here is my minimal working example.
Code: Select all
\documentclass[10pt]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish,ngerman,catalan,english]{babel}
\usepackage{pdfpages}
\setbeamertemplate{}[triangle]
\usefonttheme[stillsansserifsmall]{serif}
\usefonttheme{structuresmallcapsserif}
\usetheme{Pittsburgh}
\usecolortheme{seahorse}
\begin{document}
\section{A}
\label{sec:a}
\begin{frame}{A}
The aspects are as follows:
\begin{enumerate}
\item<1-| alert@1> First point.
\item<2-| alert@2> Second point.
\item<3-| alert@3> Third point.
\end{enumerate}
\end{frame}
\end{document}
Many thanks in advance.
Best regards,
Marie