views:

398

answers:

2

Hi, 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 an they sometimes collide with the slide's text. Thanks for fast answers!

+9  A: 

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
ire_and_curses
Thanks a lot, that's exactly what I wanted to know! I looked into the official user guide but found nothing.
UncaughtException
+2  A: 

The simplest way is:

\beamertemplatenavigationsymbolsempty 
Vivi