How to get rid of navigation bars in beamer?

孤者浪人 提交于 2019-12-05 13:17:37

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

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.

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