Document ClassesStop automatic Slide Transition

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
pallav
Posts: 170
Joined: Wed Nov 12, 2008 5:53 pm

Stop automatic Slide Transition

Post by pallav »

My slides obtained from the following code are transitioning with time. How to stop the automatic slide transition so that I can change slides by clicking or by pressing down arrow key.

Code: Select all

\documentclass[
  smaller,
  professionalfonts,
  hyperref={
    colorlinks=true,
    breaklinks=true,
    bookmarks=true,
    linkcolor=blue,
    anchorcolor=blue,
    citecolor=blue,
    filecolor=red,
    urlcolor=red,
    pdfpagemode=FullScreen
  }
]{beamer}
\usepackage{beamerthemesplit}
\mode<presentation>{
  \usetheme{shadow}
  \def\colorize<#1>{\temporal<#1>{\color{red}}{\color{red}}{\color{black!50}}}
  \beamersetaveragebackground{yellow!10}
  \beamertemplateshadingbackground{blue!5}{yellow!10}
  \setbeamertemplate{frametitle}[from second]{}
  \setbeamercovered{dynamic}
}
\usepackage{graphicx}
\usepackage[authoryear, numbers, semicolon, sort&compress]{natbib}
\usepackage{ragged2e}
\usepackage{lmodern}


\title{Title of the Presentation}
\author[abc]{Author Name}
\institute{Institution}
\date{}

\justifying
\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\section{Introduction}

\subsection{What is Allee effect}

\begin{frame}
  \begin{beamerboxesrounded}[shadow=true]{What is ...............}
    \begin{itemize}\justifying
      \item<alert@1> \textbf<1>{The \cite{aziz2003boundedness}}
    \end{itemize}
    \begin{itemize}\justifying
      \pause
      \item<alert@2> \textbf<2>{This \cite{aziz2003boundedness}}
    \end{itemize}
  \end{beamerboxesrounded}
\end{frame}

\begin{frame}
  \label{Bibliography}
  \begin{center}
   \Huge {References}
  \end{center}

  \bibliographystyle{spbasic}
  \bibliography{bibl}
\end{frame}
\end{document}

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

Xire
Posts: 4
Joined: Tue May 21, 2013 12:20 am

Re: Stop automatic Slide Transition

Post by Xire »

With what you display your slides ?
Post Reply