Hi,
I would like the counters in subfloats to begin with Roman numerals instead of the default alphabetical numbering. I am newbie so can someone throw some light on how to do this.
Graphics, Figures & Tables ⇒ counter in subfloat
NEW: TikZ book now 40% off at Amazon.com for a short time.

counter in subfloat
Hi,
redefine the corresponding counters:
redefine the corresponding counters:
Code: Select all
\documentclass{article}
\usepackage{subfig}
\renewcommand\thesubfigure{\roman{subfigure}}
\begin{document}
\begin{figure}[!ht]
\subfloat[]{\rule{4cm}{3cm}\label{sub1}}\quad
\subfloat[]{\rule{4cm}{3cm}\label{sub2}}
\end{figure}
\ref{sub1}\ref{sub2}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...