想知道这个beamer的主题:
您可以从 Luebeck
之类的主题开始,然后将配色方案更改为您喜欢的任何颜色:
\documentclass[compress]{beamer}
\usetheme{Luebeck}
\definecolor{foo}{RGB}{106,141,143}
\usecolortheme[named=foo]{structure}
\setbeamercolor{subsection in head/foot}{bg=foo!80!black}
\begin{document}
\section{title}
\subsection{title}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\subsection{title}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\section{title}
\subsection{title}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\subsection{title}
\begin{frame}
\frametitle{title}
abc
\end{frame}
\end{document}