如何去掉Beamer中的标题

发布于 2024-09-08 22:25:41 字数 158 浏览 5 评论 0原文

如何删除从投影仪乳胶文件生成的每张幻灯片顶部的章节和小节的导航?

顺便说一句,我在序言中写道:

\setbeamertemplate{navigation symbols}{}
\usepackage{beamerthemeshadow}

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

By the way, in my preamble, I wrote:

\setbeamertemplate{navigation symbols}{}
\usepackage{beamerthemeshadow}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

暮倦 2024-09-15 22:25:41

我不知道这是否是您想要的,但是如果您正在谈论带有可以单击的符号的导航栏,那么这就是要走的路:

\beamertemplatenavigationsymbolsempty

有趣的是,那就是 第二次你问这个......

顺便说一句,你可能想检查是一个专注于 LaTeX 的问答网站。

I don't know whether this is what you want, but if you are talking about the navigation bar which has the symbols you can click on, this is the way to go:

\beamertemplatenavigationsymbolsempty

Funny, that is the second time you ask this....

By the way, you might want to check this for a question/answer website focusing on LaTeX.

べ繥欢鉨o。 2024-09-15 22:25:41

框架顶部的部分导航是标题的一部分。删除它的最简单方法是更改​​标题模板。

\setbeamertemplate{navigationsymbols}{} 行与标题中的部分无关,这将删除框架右下角的小符号。

\documentclass{beamer}

\setbeamertemplate{navigation symbols}{}
\useoutertheme{shadow}

\setbeamertemplate{headline}{}

\begin{document}

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

\end{document}

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

The line \setbeamertemplate{navigation symbols}{} is unrelated to the sections in the headline, this will remove the little symbols at the bottom right if the frame.

\documentclass{beamer}

\setbeamertemplate{navigation symbols}{}
\useoutertheme{shadow}

\setbeamertemplate{headline}{}

\begin{document}

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

\end{document}
夜访吸血鬼 2024-09-15 22:25:41

Beamer 有不同的主题可供您使用,其中一些包含导航栏,有些则不包含。例如,默认主题不包含任何导航栏。 Beamer 提供的所有主题均在 用户中描述指南;只需选择一个适合您要求的并使用它:

\usetheme{default}

例如。

如果您想更改现有主题以删除导航栏,您可以尝试设置

\useoutertheme{default}

并查看是否能提供您喜欢的外观。如果没有,您可能必须进行一些特定于主题的操作。执行此操作所需的信息位于我上面链接的用户指南中。

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.

何必那么矫情 2024-09-15 22:25:41

确保演示结构不显示的愚蠢方法是(与主题无关)注释掉 \section\subsection 命令。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文