在subfig
包中,该命令\captionsetup[subfigure]{width=<length>}
可以设置图形内所有子标题的宽度。
如何设置图形中单个子标题的宽度?
答案1
使用分组应该可以做到这一点:
\begin{figure}
\begingroup
\captionsetup[subfigure]{width=<length>}
\subfloat[<caption>}{ .... }
\endgroup
%
\subfloat[<caption>}{ .... }
\end{figure}