Document ClassesPauses in Frames

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 Frames

Post by marie2011 »

Dear forum members,

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

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

turok
Posts: 7
Joined: Wed Oct 17, 2012 2:26 pm

Pauses in Frames

Post by turok »

Maybe it is not the best solution, but I hope it works.

Code: Select all

    \begin{frame}{A}
      The aspects are as follows:
      \begin{enumerate}
        \item<2-| alert@2> First point.
        \item<3-| alert@3> Second point.
        \item<4-| alert@4> Third point.
      \end{enumerate}
    \end{frame}
marie2011
Posts: 138
Joined: Mon Feb 06, 2012 4:58 pm

Re: Pauses in Frames

Post by marie2011 »

Thanks for your prompt answer, Turok. Everything works fine now :)
Post Reply