如何使 beamer 导航栏中的文字更短?

如何使 beamer 导航栏中的文字更短?

现在,我对使用制作幻灯片很好奇beamer,但是每个部分的标题都是几个字,然后又有几个部分,这样导航栏看起来就不太好了。

我只想使用一两个词而不是每个部分的总名称;

我怎样才能实现它?

答案1

使用可选参数作为分段单位,例如

\section[Two words]{A title with more words}

完整示例:

\documentclass{beamer}
\usetheme{Warsaw}

\begin{document}

\section[Shorter title]{A section with an extremely long title and some more words for the example}
\begin{frame}
test
\end{frame}
\subsection[Another shorter title]{A subsection with an extremely long title and some more words for the example}
\begin{frame}
test
\end{frame}

\end{document}

生成的导航栏的图像:

在此处输入图片描述

相关内容