更改 \ref 中的子图编号样式

更改 \ref 中的子图编号样式

我一直在格式化基于报告类的论文,并且乳胶代码有许多子图;每当我使用 \ref 引用子图时,它都会显示为 1.2a 样式,其中 1 = 章节编号,2 = 图形编号,a = 子图。

但似出现的具体图形参考样式为1.2(a)。

怎么办?提前感谢您的帮助。我使用了以下代码。

\usepackage{subfig} % used package

\begin{figure}[!htb]
\centering
\subfloat[]{%
\includegraphics[width=0.3\linewidth]{imgs/ch_3_fig_5_1.png}\label{ch:3_fig:5_1}}%a
\hfill
\subfloat[]{%
\includegraphics[width=0.6\linewidth]{imgs/ch_3_fig_5_2(2).png}\label{ch:3_fig:5_2}}%b
\caption{(a) caption 1, (a) caption 2.}
\label{ch:3_fig:5_1:2} 
\end{figure}

相关内容