Beamer 中带上标的公式从标题中剪切出来

Beamer 中带上标的公式从标题中剪切出来

我正在使用 Beamer,并在子部分标题中有一个公式。它包含上标,但它部分从标题中被剪切掉。我正在使用海鸥主题。我该怎么做才能显示上标部分?

最小代码:

\documentclass[10pt]{beamer}
\usecolortheme{seagull}
\useoutertheme{infolines}

\begin{document}

\section{Sec. 1}
\subsection{Type $A_{Bq}^{(3)}$}

\begin{frame}
\end{frame}

\end{document}

(下标部分也会弹出分配的空间,但这并没有给我带来太多困扰。)

输出部分

答案1

我发现序言中的这一补充可能会有所帮助:

\setbeamertemplate{headline}
{%
  \leavevmode%
  \hbox{%
  \begin{beamercolorbox}[wd=.5\paperwidth,ht=3.05ex,dp=1.5ex,right]{section in head/foot}%
    \usebeamerfont{section in head/foot}\insertsectionhead\hspace*{2ex}
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.5\paperwidth,ht=3.05ex,dp=1.5ex,left]{subsection in head/foot}%
    \usebeamerfont{subsection in head/foot}\hspace*{2ex}\insertsubsectionhead
  \end{beamercolorbox}}%
  \vskip0pt%
}%

ht可以增加该参数以腾出上方的空间并dp腾出下方的空间。

相关内容