我阅读了解决同一问题的相关帖子,但我没有找到回复。
我想摆脱导航符号,即第一部分,第二部分等下面的小点。
我试图使用:
\ setbeamertemplate {navigation symbols} {}
但它不起作用。
我也尝试过:
\ beamertemplatenavigationsymbolsempty
之前或之后
BEGIN {文件}
但它不起作用。
更准确地说,当我写命令时:
在TeXStudio上,它以红色突出显示。当我用鼠标滚动它上面时,我看到消息“无法识别的消息”。\ beamertemplatenavigationsymbolsempty
如果有人能帮助我,我将非常感激。
马
答案 0 :(得分:0)
节名称下面的小点称为mini frames
,navigation symbols
是右下角的箭头。
移除迷你框架的最快方法是设置
\setbeamertemplate{mini frames}{}
但是,在较新的Beamer版本中,不幸的是,这使节名称在垂直方向上未对齐。要修复此问题,可以调整标题:
\documentclass{beamer}
\usetheme{Dresden}
\makeatletter
\setbeamertemplate{headline}{%
\begin{beamercolorbox}[colsep=1.5pt]{upper separation line head}
\end{beamercolorbox}
\begin{beamercolorbox}{section in head/foot}
\vskip2pt\insertsectionnavigationhorizontal{\paperwidth}{}{}\vskip2pt
\end{beamercolorbox}%
\ifbeamer@theme@subsection%
\begin{beamercolorbox}[colsep=1.5pt]{middle separation line head}
\end{beamercolorbox}
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
\usebeamerfont{subsection in head/foot}\insertsubsectionhead
\end{beamercolorbox}%
\fi%
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
\end{beamercolorbox}
}
\makeatother
\begin{document}
\section{Part one}
\begin{frame}
xxx
\end{frame}
\section{Part two}
\begin{frame}
xxx
\end{frame}
\end{document}