8

How can I remove the navigation bar of sections and subsections on the top of each slide generated from a beamer latex file?

I'm using the package beamerthemesplit.

Paŭlo Ebermann
  • 73,284
  • 20
  • 146
  • 210
user376089
  • 1,245
  • 3
  • 14
  • 18
  • There is a proposed site at Area51 for questions like this: http://area51.stackexchange.com/proposals/2148/tex-latex-and-friends?referrer=5z6F4dAmVScN5QfMOt5KEg2 (disclaimer: link includes my referral ID) – David Z Jul 06 '10 at 03:41
  • 1
    @David: and some meta discussion http://meta.stackexchange.com/questions/12918/can-we-have-a-ruling-on-latex-on-stackoverflow. LaTeX posts are welcome on SO. – Mark Elliot Jul 06 '10 at 04:30
  • @Mark: Yes, I know, but the Area51 proposal is a better place for this type of question. I'm leaving a "forwarding address" so to speak, so that people who stumble on to this question later on will know that there's another place they could ask their own questions. – David Z Jul 06 '10 at 04:49
  • @David, I'm not sure I follow. If folks want to get answers to LaTeX questions, SO is a perfectly reasonable place to come get them. – Mark Elliot Jul 06 '10 at 05:04
  • 3
    Please try and make your question title reflect the content of your question. "Beamer latex question" is not a good title. "How to get rid of navigation bars in beamer" is a good title. – Seamus Jul 06 '10 at 16:28
  • @Mark: The LaTeX SE2.0 site, whenever it opens, will be a better place to get those answers, because that's where the experts will be. Or think about it this way: if LaTeX questions really should be asked here, what is the point of having another site devoted to them, and why have more than 250 people expressed their support for it? I agree that _currently_ LaTeX questions are fair game on SO, but once the other site opens, that could/should change. – David Z Jul 09 '10 at 06:57
  • possible duplicate of [Hide presentation controls in LaTeX beamer presentation](http://stackoverflow.com/questions/3017030/hide-presentation-controls-in-latex-beamer-presentation) – Charles Stewart Jul 09 '10 at 09:16
  • @Seamus: I edited the question title for you. – Paŭlo Ebermann Aug 13 '11 at 14:57
  • 1
    possible duplicate of [How to get rid of navigation bars in beamer](http://stackoverflow.com/questions/3210205/how-to-get-rid-of-navigation-bars-in-beamer) – Ingo Jan 10 '14 at 15:18

3 Answers3

5

Beamer has different themes you can use, some of which include that navigation bar and some of which don't. The default theme, for example, doesn't include any navigation bar. All the themes available with Beamer are described in the user guide; just pick one that suits your requirements and use it:

\usetheme{default}

for example.

If you want to alter an existing theme to remove the navigation bar, you can try setting

\useoutertheme{default}

and see if that gives you a look you like. If not, you'll probably have to get into some theme-specific manipulations. The information needed to do this is in the user guide I linked to above.

David Z
  • 128,184
  • 27
  • 255
  • 279
  • David, I tried that, but the navigation bar is still there. The preamble I wrote is: \usepackage{beamerthemesplit} \setbeamercovered{transparent} \useoutertheme{default} \usepackage{beamerthemeshadow} – user376089 Jul 06 '10 at 04:25
  • 3
    That's because you are trying to use three different outer themes. Only the last one, in your case `shadow`, will actually be in effect. You should remove `\usepackage{beamerthemesplit}` and `\usepackage{beamerthemeshadow}` and only leave `\useoutertheme{default}`. (Also keep in mind that `\usepackage` is the wrong way to use a Beamer theme) – David Z Jul 06 '10 at 04:51
  • David, thanks for your answer, but I want to keep the shadow effect and the color of the background. By removing \usepackage{beamerthemesplit} and \usepackage{beamerthemeshadow} and only leave \useoutertheme{default}, I don't have the shadow effect and the color of the background anymore, although the the navigation bar is removed. Do you have any other idea on this? – user376089 Jul 09 '10 at 06:02
  • 6
    For that kind of fine-grained modification, you can use the theme but you'll have to override an individual Beamer template. I took a look at the source files that define the shadow template, and I _think_ you'll need to insert something like `\setbeamertemplate{headline}{}` after `\useoutertheme{shadow}` (and of course you should remove `\useoutertheme{default}`). But I'm not familiar with the process of modifying these templates, so you may need to examine the theme definitions yourself in connection with the Beamer user guide to figure out how to get the look you want. – David Z Jul 09 '10 at 07:10
5

The easiest way to remove the section navigation at the top of the frame is to change the headline template.

\documentclass{beamer}

\useoutertheme{split}
\setbeamertemplate{headline}{}

\begin{document}

\section{title}
\begin{frame}
\end{frame}

\end{document}
2

The stupid way to make sure the presentation structure does not show up, (independent of theme) comment out the \section and \subsection commands.

Niall Murphy
  • 1,108
  • 1
  • 8
  • 9