在 Beamer 中自定义导航栏

在 Beamer 中自定义导航栏

我想删除导航栏下方颜色暗淡的栏以获得更多的空间。

梅威瑟:

% !TeX spellcheck = en_GB
\documentclass[french,11pt,aspectratio=1610,xcolor=table,t]{beamer}
\addtobeamertemplate{frametitle}{}{\vspace{-0.3Cm}}

\usetheme{Boadilla}
\beamertemplatenavigationsymbolsempty
%beaver
\usecolortheme{orchid}
\useoutertheme{miniframes}
\title
[Short Title]{Title}

%\subtitle{} % short version unused by this template
\author
    [Person]
    {Phd defense presentation\\
    Option :Signal processing\\
    Presented by: Mr. \textbf{Person}\\
    Directed by: Pr. \textbf{Person}}
\institute
{University \\
Faculty\\
Laboratory}

\date
    [12/2019]
    {17 Décembre 2019}

\begin{document}

\maketitle

\begin{frame}{Plan}
\tableofcontents
\end{frame}

\section{Context}
\begin{frame}{Contexte}
Context
\end{frame}

\section{Method}
\begin{frame}{Method}
Method
\end{frame}

\section{Résult}
\begin{frame}{Résult}
résult
\end{frame}

\end{document}

答案1

您的意思是想得到那样的东西吗?

如果你是这个意思,那么有一个miniframes外部主题选项可以做到这一点。只需将代码中的相应行替换为

\useoutertheme[subsection=false]{miniframes}

相关内容