如何删除 LaTeX Beamer 模板的页脚?

发布于 2024-08-04 18:51:26 字数 170 浏览 6 评论 0原文

我正在使用 Beamer LaTeX 包的“beamerthemesplit”模板。该模板在所有页面的页脚中包含作者姓名和演示文稿的标题。有人知道有什么方法可以抑制这个页脚吗?

I am using the "beamerthemesplit" template of the Beamer LaTeX package. This templates includes the author's name and the title of the presentation in the footer of all pages. Is anyone aware of any way to suppress this footer?

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

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

发布评论

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

评论(2

忆悲凉 2024-08-11 18:51:26

我摆脱了默认的页脚,并使用以下命令插入页码。

%gets rid of bottom navigation bars
\setbeamertemplate{footline}[page number]

%gets rid of navigation symbols
\setbeamertemplate{navigation symbols}{}

I got rid of the default footer, and inserted page numbers instead using the following commands.

%gets rid of bottom navigation bars
\setbeamertemplate{footline}[page number]

%gets rid of navigation symbols
\setbeamertemplate{navigation symbols}{}

我没有最直接的答案给你,因为我不使用 beamerthemesplit 模板。
但在最近的一次演讲中,我很想稍微分解一下主题。因此,如果您使用它,

\mode<presentation>
{
  \useoutertheme{default}   % empty
%  \useoutertheme{infolines}% simple but bland
%  \useoutertheme{split}    % ok if compress option used
%  \useoutertheme{shadow}   % way too much space used -- ok with option 'compress'
  %\useoutertheme{shadow}   
  %\setbeamercovered{transparent} % or whatever (possibly just delete it)
  %\useoutertheme[subsection=false]{miniframes}
}

您将通过 default 获得一个非常空的设置。添加 infolines 将为您提供包含三个部分的页脚,您可以研究该外部主题的代码以仅添加部分。就像颜色主题一样——我只是做了一些尝试,最终回到了默认主题。

I do not have the most direct answer for you as I do not use the beamerthemesplit template.
But for a recent presentation, I was tempted to decompose the themese a little. So if you use this

\mode<presentation>
{
  \useoutertheme{default}   % empty
%  \useoutertheme{infolines}% simple but bland
%  \useoutertheme{split}    % ok if compress option used
%  \useoutertheme{shadow}   % way too much space used -- ok with option 'compress'
  %\useoutertheme{shadow}   
  %\setbeamercovered{transparent} % or whatever (possibly just delete it)
  %\useoutertheme[subsection=false]{miniframes}
}

you get via default a really empty setup. Adding infolines gives you a footer with three parts, you can study the code of that outer theme to just add parts. Likewiese with color themses -- I just experimented a little and eventually went back to a default theme.

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