프레젠테이션을 위해 마드리드 테마로 작업하고 있는데 제목의 섹션 텍스트와 각줄의 제목이 빨간색으로 나타나서 변경하려고 합니다. 어떻게 진행할 수 있나요? 죄송합니다. 다음 코드를 사용했습니다.
\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
. 제거하면 사용된 테마에 따라 머리글/바닥글 색상이 변경됩니다. 당신도 따라갈 수 있습니다이 링크문서의 하이퍼링크에 색상을 추가하지만 머리글/바닥글에는 색상을 추가하지 않습니다.