Я хотел бы удалить количество слайдов (например, SLIDE_NUMBER / TOTAL_SLIDES
) из нижнего колонтитула (фут-линии) презентации Beamer без полного удаления нижнего колонтитула. Я использую тему Boadilla, которая использует внешнюю тему infolines
. В файле beamerouterthemeinfolines.sty
мы находим следующее определение для сноски:
\defbeamertemplate*{footline}{infolines theme}
{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}%
\usebeamerfont{author in head/foot}\insertshortauthor~~(\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}
\end{beamercolorbox}}%
\vskip0pt%
}
Мне нужно существенно переопределить эту внешнюю тему, чтобы в ней не было \insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
, или иначе определить новую внешнюю тему, которая наследует все остальное от темы infolines. Как я могу это сделать?
Схожий вопрос: Как удалить нижние колонтитулы шаблонов LaTeX Beamer?