我正在使用马德里主题创建 Beamer 演示文稿。但是我喜欢法兰克福主题顶部显示的导航点。有没有办法将它们包含到我的演示文稿中?我环顾四周,似乎询问如何删除这些点的人比询问如何添加它们的人多得多。
答案1
像这样?
\documentclass{beamer}
\usetheme{Madrid}
\setbeamercolor{section in head/foot}{fg=white,bg=black}
\makeatletter
\setbeamertemplate{headline}{%
\begin{beamercolorbox}[ht=2.25ex,dp=3.75ex]{section in head/foot}
\insertnavigation{\paperwidth}
\end{beamercolorbox}%
}%
\makeatother
\begin{document}
\section{sec1}
\subsection{s1}
\begin{frame}{frame1.1}
blah, blah, blah
\end{frame}
\begin{frame}{frame1.2}
blah, blah, blah
\end{frame}
\section{sec2}
\subsection{s2}
\begin{frame}{frame2.1}
blah, blah, blah
\end{frame}
\begin{frame}{frame2.2}
blah, blah, blah
\end{frame}
\section{sec3}
\subsection{s3}
\begin{frame}{frame3.1}
blah, blah, blah
\end{frame}
\begin{frame}{frame3.2}
blah, blah, blah
\end{frame}
\end{document}