Here is a minimal example of the source code:
Code: Select all
\documentclass{amsart}
\usepackage{graphicx}
\usepackage{subfig}
\begin{document}
Another thing that is annoying me is how the subfigures are labelled using capitals, but
when I reference them, they are in lower case. For example,
Figure~\ref{FigTest}\subref{Fig008}. I want the labels on the figures to be lowercase,
too, like they are using the \texttt{article} class.
\begin{figure}[ht]
\centering
\subfloat[test]{\label{Fig007}\includegraphics{Fig007}}
\hspace{.5cm}
\subfloat[test2]{\label{Fig008}\includegraphics{Fig008}}
\caption{}\label{FigTest}
\end{figure}
\end{document}
If you look at the label and caption for the second subfigure, you can see how it isn't being centered. I have 67 figures that I am trying to include in my article and roughly 10% of them are causing this sort of problem. It doesn't appear to be a bounding box issue, but maybe I haven't really verified this.
Here is the really annoying part. When I switch to the article document class, I have none of these issues. Also, if I use the older subfigure package, I don't have any of these issues either.
Another issue that I'm having is that the labels for the subfigures when using the amsart document class are in capital letters, but when you reference them, they are lowercase. Does anyone know how to force them to be lowercase when using the amsart document class?