将节和小节分解为投影机标题上的唯一节

将节和小节分解为投影机标题上的唯一节

我们如何才能将节和小节分解为投影仪标题上的唯一节?

例如,

在此处输入图片描述

AA 来自部分,DATA 来自子部分。

\section{AA}
\subsection{DATA}

“AA DA​​TA”是否可能出现在仅使用部分的中心?

\section{AA DATA}

谢谢你,

答案1

我不确定这是否是你想要的:

\documentclass[compress]{beamer}
\usetheme{AnnArbor}

\makeatletter
\setbeamertemplate{headline}
{
  \leavevmode%
  \hbox{%
  \begin{beamercolorbox}[wd=\paperwidth,ht=2.65ex,dp=1.5ex,center]{section in head/foot}%
    \usebeamerfont{section in head/foot}\insertsectionhead\hspace*{2ex}
  \end{beamercolorbox}}%
  \vskip0pt%
}
\makeatother

\author{The Author}
\title{The Title}
\institute{The Institute}

\begin{document}

\section{AA DATA}
\begin{frame}
test
\end{frame}

\end{document}

在此处输入图片描述

我重新定义了headline模板,使其仅使用beamercolorbox给定的宽度之一\paperwidth,并且仅包含当前部分的名称,居中。

相关内容