Document Classes ⇒ Jumping in a Presentation
-
- Posts: 141
- Joined: Sun Jun 12, 2011 6:30 am
Jumping in a Presentation
I am working on a presentation in the beamerclass.
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.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Jumping in a Presentation
Hi latexhelp1,
if you use
in the beginning of the introduction section,
it will bring when clicked the first page after the frame with the label mainresults, i.e.,
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
if you use
Code: Select all
\hyperlink{mainresults<1>}{\beamergotobutton{Skip Introduction}}
it will bring when clicked the first page after the frame with the label mainresults, i.e.,
Code: Select all
Code, edit and compile here:
\begin{frame}[label=mainresults]%Here is the main results.\end{frame}
Best regards.
bkarpuz
Last edited by bkarpuz on Mon Jan 16, 2012 6:54 am, edited 1 time in total.
-
- Posts: 141
- Joined: Sun Jun 12, 2011 6:30 am
Jumping in a Presentation
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.
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.
I don't quite understand how to implement your solution, however.
Suppose I have two frames like this.
Code: Select all
Code, edit and compile here:
\frame{\frametitle{Main Slide}Some text here.Put button for hyperreferencing here.}\frame{\frametitle{Appendix Table}A table here.}
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.
Jumping in a Presentation
Please check the following example.
Code: Select all
Code, edit and compile here:
\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.