\newfloat
to distinguish one set of figures from another. I've been able to change the title and text of the caption to blue but cannot seem to change the counter number to blue. Any thoughts would be appreciated.
Code: Select all
\documentclass[12pt]{report}
\usepackage{color}
\usepackage{float}
\floatstyle{plain}
\newfloat{Teacher}{thp}{lop}
\floatname{Teacher}{\textcolor{blue}{Teacher's Guide}}
\begin{document}
\begin{Teacher}[h!]
\begin{center}
A picture would go here.
\end{center}
\caption{\textcolor{blue}{Caption for the picture goes here.}}
\end{Teacher}
\end{document}