LaTeX 投影仪主题

LaTeX 投影仪主题

我想知道这台投影机的主题:

在此处输入图片描述

答案1

您可以从以下主题开始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}

在此处输入图片描述

相关内容