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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply