In the subfig packge, the command \captionsetup[subfigure]{width=<length>} can set the width of all subcaptions within a figure.
How can the width of just a single subcaption in a figure be set?
In the subfig packge, the command \captionsetup[subfigure]{width=<length>} can set the width of all subcaptions within a figure.
How can the width of just a single subcaption in a figure be set?
Using grouping should do it:
\begin{figure}
\begingroup
\captionsetup[subfigure]{width=<length>}
\subfloat[<caption>}{ .... }
\endgroup
%
\subfloat[<caption>}{ .... }
\end{figure}
\begin{..}and\end{..}already add group, so any LaTeX environment would do as well. Also some settings like counters are done global so grouping won't effect them. – Martin Scharrer Jul 21 '11 at 14:04justification=centering,singlelinecheck=false,position=topas options. – Martin Scharrer Jul 21 '11 at 14:12