马德里头部/脚部文字颜色

马德里头部/脚部文字颜色

我正在使用马德里主题进行演示,但标题和脚注中的标题部分文本显示为红色,我正在尝试更改它。我该怎么做?抱歉,我使用了以下代码

\documentclass[hyperref={pdfpagemode=FullScreen,colorlinks=true},xcolor={dvipsnames,svgnames,table}]{beamer}

 \usepackage{concrete} 

 \usepackage[utf8]{inputenc}

 \usepackage[T1]{fontenc}

 \usepackage[frenchb]{babel}
\usetheme[secheader]{Madrid}



\setbeamertemplate{navigation symbols}{}
 \author{Ikondo}
 \title[Variability]{\textsc{Variability}}

 \institute{My university}

 \usecolortheme{albatross}

 \begin{document}                         


 \begin{frame}[plain]%\thispagestyle{empty}

 \begin{columns}
 \begin{column}{9cm}
 \includegraphics[width=2.3cm, height=1.7cm]{logo1.jpg} %\hspace*{1.52cm}
 \end{column}
 \begin{column}{2cm}
 \includegraphics[width=2.1cm, height=1.7cm]{logo2.jpg} 
 \end{column}
 \end{columns}

 \begin{center}

 \begin{minipage}{100mm}

 \centering
 \begin{block}{}


 \begin{center}
 \textrm{Vriability}
 \end{center}
 \end{block}

 \end{minipage}

 \end{center}

 \begin{center}
 \includegraphics[width=2.5cm,height=1.5cm]{logo3.jpg} \\

 institute \\
 \vspace{0.2cm}
 Report \\
 %\end{center}
 \begin{columns}
 \begin{column}{3cm}
 \includegraphics[width=2.1cm, height=1cm]{logo4.jpg} %\hspace*{1.52cm}
 \end{column}
 \begin{column}{2cm}
 \includegraphics[width=2.1cm, height=1cm]{logo5.png} 
 \end{column}
 \end{columns}
 \end{center}
 \end{frame}

 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


 \section{Methodes}
   \subsection{structure}
  \begin{frame}


  \begin{block}{bantou}
   Le texte de ma diapo.
   \end{block}
  \end{frame}
   \end{document}
  \section{Données}
   \begin{frame}
 \transblindshorizontal
 %\transwipe
   \includegraphics[width=10cm,height=8cm]{fig1.jpg}\\
    \end{frame}


  \section{résultats}
  \subsection{structure} 
   \begin{frame}
 \transsplitverticalout
 %\transwipe
   \includegraphics[width=10cm,height=8cm]{fig2.jpg}\\
    \end{frame}
 \end{document}

答案1

您可以使用一些预定义的颜色主题,例如

\usetheme{Madrid}
\usecolortheme{default}
% default albatross beaver beetle crane dolphin dove
% fly lily orchid rose seagull seahorse whale wolverine

这将轻松改变演示文稿的颜色。

也可以看看http://www.hartwork.org/beamer-theme-matrix/

编辑:根据您提供的示例,颜色取决于选项colorlinks=true。如果您删除它,则页眉/页脚将根据使用的主题着色。您也可以关注此链接为文档中的超链接添加颜色,但不为页眉/页脚添加颜色。

相关内容