Document ClassesPauses in List Items

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
marie2011
Posts: 138
Joined: Mon Feb 06, 2012 4:58 pm

Pauses in List Items

Post by marie2011 »

Dear forum members,

I was wondering if it is possible to have a "pause" between "Universities" and "1st university". I am sending the whole frame since I do not know if the rest influences my question.

Code: Select all

\documentclass[10pt]{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish,ngerman,catalan,english]{babel}
\usepackage{pdfpages}
\usepackage{tabularx}
\usepackage{tabu}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{amsfonts}

\usepackage{color}

%\newcommand*{\bluebullet}{\textcolor{blue}{\textbullet}}
\newcommand*{\bluebullet}{{\usebeamercolor[fg]{item}{\textbullet~}}}

\usefonttheme[stillsansserifsmall]{serif}
\usefonttheme{structuresmallcapsserif}
\usetheme{Pittsburgh}
%\usecolortheme{whale}
\usecolortheme{seahorse}

\setbeamertemplate{footline}[frame number]
\beamertemplatenavigationsymbolsempty

\begin{document}
\selectlanguage{spanish}
\begin{frame}
Universities and educational establishments:\\
\uncover<3->{Universities:}
\begin{itemize}
\item<3-| alert@3> 1st university;
\item<4-| alert@4> 2nd university. 
\end{itemize}

\uncover<5->{Educational establishments:} 
\begin{itemize}
\item<5-| alert@5> 1; 
\item<6-| alert@6> 2; 
\item<7-| alert@7> 3.
\end{itemize}

\uncover<8->{In addition, they were asked to:}
\begin{itemize}
 \item<8-| alert@8> 1st task;
\item<9-| alert@9> 2nd task.
\end{itemize}
\end{frame}
\end{document}
Many thanks in advance.

Regards,

Marie

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Pauses in List Items

Post by Stefan Kottwitz »

Hi Marie,

it already works if I change that 3 to 2:

Code: Select all

Universities and educational establishments:\\
\uncover<2->{Universities:}
\begin{itemize}
  \item<3-| alert@3> 1st university;
  \item<4-| alert@4> 2nd university.
\end{itemize}
Stefan
LaTeX.org admin
marie2011
Posts: 138
Joined: Mon Feb 06, 2012 4:58 pm

Re: Pauses in List Items

Post by marie2011 »

Many thanks for your answer, Stefan.

Everything works fine now.

Regards,

Marie
Post Reply