I need to refer to subfigures as Figures 1a and b, but when I used \subref{}, it only gave me Figures 1a and (b). How can I get rid of the parentheses around b?
BTW, I used following lines to remove parentheses in 1(a) with \ref{}, however I don't know how to set similar commands for \subref{}.
Code: Select all
\usepackage{subfigure}
\makeatletter
\renewcommand{\thesubfigure}{\alph{subfigure}}
\renewcommand{\@thesubfigure}{(\alph{subfigure})\hskip\subfiglabelskip}
\renewcommand{\@@thesubfigure}{(\alph{subfigure})}
\makeatother
yongmayer