如何摆脱beamer"导航工具栏"

时间:2016-04-17 21:16:10

标签: latex beamer

乳胶文件定义如下

\documentclass[center]{beamer}
\mode<presentation> {
\usetheme{Madrid}
\setbeamertemplate{navigation symbols}{}
}
\beamertemplatenavigationsymbolsempty

显然我已尝试使用现有解决方案删除导航工具栏,但在全屏模式下,工具栏仍然存在。我不希望投影仪显示幻灯片的总数。我该如何删除它?

enter image description here

作为后续行动,我发现了一些过去的帖子来处理这个问题,现在它可行了:)

\documentclass[center]{beamer}

\usetheme{Madrid}
\setbeamertemplate{navigation symbols}{}

%   no page number/total number of slides
\makeatletter
\setbeamertemplate{footline}
{
  \leavevmode%
  \hbox{%
  \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
    \usebeamerfont{author in head/foot}\insertshortauthor~~\beamer@ifempty{\insertshortinstitute}{}{(\insertshortinstitute)}
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}%
    \usebeamerfont{title in head/foot}\insertshorttitle
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}%
    \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}
%    \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} % DELETED
  \end{beamercolorbox}}%
  \vskip0pt%
}
\makeatother

基本上,首先我必须通过注释&#34;插入帧编号&#34;来重新定义footline,然后我需要删除&#34;演示文稿&#34;包裹马德里主题的模式。没有任何一步,它就不会起作用。

我刚刚发现,在我的Mac上,如果我点击&#34;全屏&#34;上述修改仍然无法正常工作来自&#34;编辑&#34;。简单的解决方案实际上是使用键盘进入全屏 - &#34;命令+ shift + L&#34;。即使没有上述修改,这也会做到。

0 个答案:

没有答案