如何去掉Beamer中的标题
如何删除从投影仪乳胶文件生成的每张幻灯片顶部的章节和小节的导航?
顺便说一句,我在序言中写道:
\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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不知道这是否是您想要的,但是如果您正在谈论带有可以单击的符号的导航栏,那么这就是要走的路:
有趣的是,那就是 第二次你问这个......
顺便说一句,你可能想检查这是一个专注于 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:
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.
框架顶部的部分导航是标题的一部分。删除它的最简单方法是更改标题模板。
\setbeamertemplate{navigationsymbols}{}
行与标题中的部分无关,这将删除框架右下角的小符号。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.Beamer 有不同的主题可供您使用,其中一些包含导航栏,有些则不包含。例如,默认主题不包含任何导航栏。 Beamer 提供的所有主题均在 用户中描述指南;只需选择一个适合您要求的并使用它:
例如。
如果您想更改现有主题以删除导航栏,您可以尝试设置
并查看是否能提供您喜欢的外观。如果没有,您可能必须进行一些特定于主题的操作。执行此操作所需的信息位于我上面链接的用户指南中。
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:
for example.
If you want to alter an existing theme to remove the navigation bar, you can try setting
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.
确保演示结构不显示的愚蠢方法是(与主题无关)注释掉
\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.