Document ClassesJumping in a Presentation

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Jumping in a Presentation

Post by latexhelp1 »

I am working on a presentation in the beamerclass.

Code: Select all

\section{Introduction}
\subsection{}
It then has the bubbles below each for each slide in that section (or subsection, not sure what the correct terminology is).
Last edited by latexhelp1 on Tue Jan 17, 2012 2:44 pm, edited 1 time in total.

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

bkarpuz
Posts: 124
Joined: Thu Dec 18, 2008 4:53 pm

Jumping in a Presentation

Post by bkarpuz »

Hi latexhelp1,

if you use

Code: Select all

\hyperlink{mainresults<1>}{\beamergotobutton{Skip Introduction}}
in the beginning of the introduction section,
it will bring when clicked the first page after the frame with the label mainresults, i.e.,

Code: Select all

\begin{frame}[label=mainresults]
%Here is the main results.
\end{frame}
And if you click the Go Back Button (the circular arrow directed counterclockwise) at the right bottom corner of the page it will take you back.

Best regards.
bkarpuz
Last edited by bkarpuz on Mon Jan 16, 2012 6:54 am, edited 1 time in total.
latexhelp1
Posts: 141
Joined: Sun Jun 12, 2011 6:30 am

Jumping in a Presentation

Post by latexhelp1 »

Thank you so much for your response! It is very generous for you to respond.

I don't quite understand how to implement your solution, however.

Suppose I have two frames like this.

Code: Select all

\frame
{
\frametitle{Main Slide}
Some text here.   

Put button for hyperreferencing here.
}

\frame
{
\frametitle{Appendix Table}
A table here.
}
How would I get the 2nd slide (Appendix Table) as a hyperreference to the 1st slide such that I click within the first to get to the 2nd. Otherwise, the 2nd slide would never appear...

And, is it possible to do this such that it does not affect the slide numbering nor the circles at the top of the slide that keep track of the section and the slide within the section?

I really appreciate your help and your taking the time to help.
bkarpuz
Posts: 124
Joined: Thu Dec 18, 2008 4:53 pm

Jumping in a Presentation

Post by bkarpuz »

Please check the following example.

Code: Select all

\documentclass{beamer}

\usetheme{Warsaw}

\begin{document}

\title[Short Title]{Long Title}
\author[Lastname]{Author}

\institute{Address Information}

\date{Today}


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


\begin{frame}
\frametitle{Contents}
\tableofcontents
\end{frame}


\section{Introduction}

\begin{frame}
\frametitle{Introduction}
Some introductory text here.\\
\hyperlink{mr<1>}{\beamerskipbutton{Skip Introduction}}
\end{frame}


\begin{frame}
A page.
\end{frame}


\begin{frame}
Another page.
\end{frame}


\section{Main Results}

\begin{frame}[label=mr]
\frametitle{Main Results}
Some main results here.\\
\hyperlink{apa<1>}{\beamergotobutton{Go to Appendix~A}}\\
\hyperlink{apb<1>}{\beamergotobutton{Go to Appendix~B}}
\end{frame}


\section{Appendix~A}

\begin{frame}[label=apa]
\frametitle{Appendix~A}
Here is some information.\\
\hyperlink{mr<1>}{\beamerreturnbutton{Go Back}}

\end{frame}


\section{Appendix~B}

\begin{frame}[label=apb]
\frametitle{Appendix~B}
Here is some other information.\\
\hyperlink{mr<1>}{\beamerreturnbutton{Go Back}}
\end{frame}

\end{document}
Post Reply