Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hiding the presentation controls in LaTeX beamer presentation [closed]

I am currently building a presentation using LaTeX beamer. Is there a way to hide the presentation controls on the bottom of the slides? I don't use those controls, and they sometimes collide with the slide's text.

like image 376
Fabian Meumertzheim Avatar asked Jun 10 '10 17:06

Fabian Meumertzheim


People also ask

Is Beamer Documentclass in LaTeX?

Beamer is a powerful and flexible LaTeX class to create great looking presentations. This article outlines the basis steps to making a Beamer slideshow: creating the title page, adding a logo, highlighting important points, making a table of contents and adding effects to the slideshow.

Which LaTeX command can be used to create a presentation?

sty. The \defbeamertemplate command creates a new template where the first argument is the mode, * in this case, the second argument is what the template is for, and the third argument is the name of the new template.


2 Answers

Yes, from p.223 of the Beamer guide:

To remove navigation symbols,

\usenavigationsymbolstemplate{}

Although it looks like the syntax has changed since then. This more recent page has:

\setbeamertemplate{navigation symbols}{}%remove navigation symbols 
like image 66
ire_and_curses Avatar answered Oct 05 '22 20:10

ire_and_curses


The simplest way is:

\beamertemplatenavigationsymbolsempty  
like image 36
Vivi Avatar answered Oct 05 '22 20:10

Vivi