LaTex \insertnavigation - 如何更改标题颜色?

问题描述 投票:0回答:1

我是投影仪新手,在更改标题颜色时遇到问题。 我正在准备使用背面的投影仪进行演示。我正在使用 CambridgeUS 模板,但我想添加一个标题,其中包含代表幻灯片的部分和点。 我成功使用 \insertnavigation 命令添加标题,但无法更改颜色。这是我正在使用的代码

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{dirtytalk}
\usepackage{xcolor}
\usepackage{tgpagella}
\usepackage{adjustbox}
\usepackage{multirow}
\usepackage{dcolumn}

\usetheme{CambridgeUS}
\usecolortheme{default}
%----------------Set Colors
\xdefinecolor{scu}{RGB}{149,42,31} 
\setbeamercolor{title}{bg=scu,fg=white}

%----------------Add Headline
\setbeamertemplate{headline}{
\begin{minipage}[c][1.1cm]{\paperwidth}
        \insertnavigation{\paperwidth}
    \end{minipage}
}



%----------------Title page
\title[Title Sidebar] %optional
{Main Title}

\author[Author Sidebar] % (optional)
{
\vspace{0.2cm}
 {\large \textbf{Author}\\{\footnotesize Institution}}}


\date[August 29, 2023] % (optional)
{\footnotesize{Conference} \\
Place\\}


%---------------------------------------------------------------

\begin{document}



\begin{frame}
\titlepage
\end{frame}



\section*{Introduction}

\begin{frame}{Introducing frame}
    
\end{frame}

\section{Section 1}
\begin{frame}
    
\end{frame}

\section{Section 2}
\begin{frame}
    
\end{frame}


\section{Conclusion}
\begin{frame}{Concluding frame}
    
\end{frame}
\end{document}

我尝试了以下一些命令,但没有成功。

\setbeamercolor{structure}{fg=white, bg=scu}
\setbeamercolor{headline}{fg=white, bg=scu}
\setbeamercolor{sidebar}{fg=white, bg=scu}

这可能是使用颜色命令时的一个简单错误,但我无法弄清楚我错过了什么。非常感谢任何帮助。

colors navigation latex sidebar beamer
1个回答
0
投票
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{dirtytalk}
\usepackage{xcolor}
\usepackage{tgpagella}
\usepackage{adjustbox}
\usepackage{multirow}
\usepackage{dcolumn}

\usetheme{CambridgeUS}
\usecolortheme{default}
%----------------Set Colors
\xdefinecolor{scu}{RGB}{149,42,31} 
\setbeamercolor{title}{bg=scu,fg=white}

%----------------Add Headline
\makeatletter
\setbeamertemplate{headline}{%
  \begin{beamercolorbox}[colsep=1.5pt]{upper separation line head}
  \end{beamercolorbox}
  \begin{beamercolorbox}{section in head/foot}
    \vskip2pt\insertnavigation{\paperwidth}\vskip2pt
  \end{beamercolorbox}%
%  \ifbeamer@theme@subsection%
%    \begin{beamercolorbox}[colsep=1.5pt]{middle separation line head}
%    \end{beamercolorbox}
%    \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
%      leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
%      \usebeamerfont{subsection in head/foot}\insertsubsectionhead
%    \end{beamercolorbox}%
%  \fi%
  \begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
  \end{beamercolorbox}
}
\makeatother

\setbeamercolor{section in head/foot}{bg=green,fg=orange}

%----------------Title page
\title[Title Sidebar] %optional
{Main Title}

\author[Author Sidebar] % (optional)
{
\vspace{0.2cm}
 {\large \textbf{Author}\\{\footnotesize Institution}}}


\date[August 29, 2023] % (optional)
{\footnotesize{Conference} \\
Place\\}


%---------------------------------------------------------------

\begin{document}



\begin{frame}
\titlepage
\end{frame}



\section*{Introduction}

\begin{frame}{Introducing frame}
    
\end{frame}

\section{Section 1}
\begin{frame}
    
\end{frame}

\section{Section 2}
\begin{frame}
    
\end{frame}


\section{Conclusion}
\begin{frame}{Concluding frame}
    
\end{frame}
\end{document}
© www.soinside.com 2019 - 2024. All rights reserved.