How to get rid of navigation bars in beamer?

梦想的初衷 提交于 2019-12-07 06:47:16

问题


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.


回答1:


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




回答2:


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.




回答3:


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}


来源:https://stackoverflow.com/questions/3183258/how-to-get-rid-of-navigation-bars-in-beamer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!