Document ClassesAdjustment of Caption Label Color in Presentation

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
marie2011
Posts: 138
Joined: Mon Feb 06, 2012 4:58 pm

Adjustment of Caption Label Color in Presentation

Post by marie2011 »

Dear forum members,

I was wondering if it is possible to get a similar colour to "seahorse", which is the colour for my theme. I want to have the word "figura" as the same colour as in "tabla".

This is my minimal working example:

Code: Select all

\documentclass[10pt]{beamer}
 \usepackage[T1]{fontenc}
 \usepackage[utf8]{inputenc}
 \usepackage[spanish,ngerman,catalan,english]{babel}
 \usepackage{pdfpages}
 \usepackage{tabularx}
\usepackage{tabu}
\usepackage{booktabs}

\usefonttheme[stillsansserifsmall]{serif}
\usefonttheme{structuresmallcapsserif}
\usetheme{Pittsburgh}
\usecolortheme{seahorse}
\setbeamertemplate{footline}[frame number]
    

\addto{\captionsspanish}{%
      \renewcommand*{\tablename}{Tabla}
    }

\beamertemplatenavigationsymbolsempty

\begin{document}
\newcommand*\numer{N"o}
\selectlanguage{spanish}
\begin{frame}
  \titlepage
\end{frame}

\begin{frame}
  \frametitle{{\'I}ndice}
   \tableofcontents
\end{frame}


\frame{
	\frametitle{{\'I}ndice}
	\tableofcontents
	[pausesections]
}
\begin{frame}
\begin{table}[!ht] 
\caption{Errores}
 \centering
 \begin{tabular}{llc}
 \toprule
\textbf{\numer} & \textbf{Subcategoría} &\textbf{Total}\\
\hline
\hline
E & P& 8\\
A& U& 7\\
\hline
\bottomrule
\end{tabular}
\label{tab:total}
\end{table}
\end{frame}



\begin{frame}

\sc{Figura}

\end{frame}


\end{document}
Many thanks in advance.

Regards,

Marie

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply