I was wondering if you could help me with the next problem I encountered. I would like to know if it is possible to make a pause between "the following research questions are posed" and the first item.
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}
\usefonttheme[stillsansserifsmall]{serif}
\usefonttheme{structuresmallcapsserif}
\usetheme{Pittsburgh}
%\usecolortheme{whale}
\usecolortheme{seahorse}
\setbeamertemplate{footline}[frame number]
\beamertemplatenavigationsymbolsempty
\begin{document}
\selectlanguage{english}
\begin{frame}{Research Questions}
First part of research questions. \pause
The following research questions are posed:
\begin{enumerate}
\item<2-| alert@2> 1st question
\item<3-| alert@3> 2nd question
\item<4-| alert@4> 3rd question
\end{enumerate}
\end{frame}
\end{document}
Best regards,
Marie