Como modificar a sublegenda “Figura 1a” para “Figura 1 (a)”?
\documentclass[12pt]{article}
\usepackage{blindtext}
\usepackage{graphicx,psfrag,epsf}
\usepackage{epstopdf}
\usepackage{float}
\usepackage[export]{adjustbox}
\usepackage{mathtools}
\usepackage{verbatim}
%\usepackage[subrefformat=parens,labelformat=parens, labelsep=quad]{subfig}
\usepackage{subfigure}
\usepackage{caption}
%\usepackage{subcaption}
\newcommand{\bs}{\boldsymbol}
\renewcommand\thesubfigure{\alph{subfigure}}
% correct bad hyphenation here
%\pdfminorversion=4
% NOTE: To produce blinded version, replace "0" with "1" below.
\newcommand{\blind}{0}
% DON'T change margins - should be 1 inch all around.
\addtolength{\oddsidemargin}{-.5in}%
\addtolength{\evensidemargin}{-.5in}%
\addtolength{\textwidth}{1in}%
\addtolength{\textheight}{-.3in}%
\addtolength{\topmargin}{-.8in}%
\begin{document}
The Figure~\ref{descriptive1} is composed by Figure~\ref{fig:hist_longair} and Figure~\ref{fig:curve_longair}.
\begin{figure}[H]
\center
\subfigure[Histogram]{\includegraphics[width = .42\linewidth]{hist_longair.eps} \label{fig:hist_longair}}%
\quad%
\subfigure[Contour curve]{\includegraphics[width = .42\linewidth]{curve_longair.eps}\label{fig:curve_longair}}%
\caption{Histogram, contour curve and symbolic scatterplot of $\bs{Y}$}
\label{descriptive1}
\end{figure}
\end{document}
Responder1
O subfigure
pacote está obsoleto e bastante incompatível com o caption
pacote, que também é carregado pelo seu documento. Sugiro que você abandone o carregamento do subfigure
pacote e, em vez disso, carregue o subcaption
pacote e faça uso de seu maquinário. (O subcaption
pacote também carrega automaticamente o caption
pacote.)
Uma vantagem separada dessa abordagem é que ela permite usar o cleveref
pacote e seus comandos "inteligentes" de referência cruzada. Um aplicativo é mostrado no exemplo abaixo.
Interpretei seu artigo como querendo algum espaço em branco entre o rótulo da figura e o rótulo da subfigura. Isso é implementado tendo \,
(thinspace) na (re)definição de \thesubfigure
. Se você preferir um espaço entre palavras completo, simplesmente substitua \,
por ~
(espaço inseparável). Eu não recomendaria isso; na verdade, se este fosse meu documento, eu não forneceria espaço algum.
\documentclass[12pt]{article}
% I've tried to slim the preamble down to the essentials.
\usepackage{mathtools}
\let\bs\boldsymbol
\usepackage[demo]{graphicx} % remove 'demo' option in real document
\usepackage[labelformat=simple]{subcaption} % default is 'labelformat=parens'
\renewcommand\thesubfigure{\,(\alph{subfigure})} % thinspace before subfigure label
\usepackage[noabbrev]{cleveref} % just for this example
\begin{document}
Figure~\ref{descriptive1} consists of Figure~\ref{fig:hist_longair} and Figure~\ref{fig:curve_longair}.
\Cref{descriptive1} consists of \Cref{fig:hist_longair,fig:curve_longair}.
\begin{figure}[ht!]
\begin{subfigure}{.45\textwidth}
\includegraphics[width=\linewidth]{hist_longair.eps}
\caption{Histogram}\label{fig:hist_longair}
\end{subfigure}
\hfill % maximize the spread between the subfigures
\begin{subfigure}{.45\textwidth}
\includegraphics[width=\linewidth]{curve_longair.eps}
\caption{Contour curve}\label{fig:curve_longair}
\end{subfigure}
\caption{Histogram, contour curve and symbolic scatterplot of $\bs{Y}$}
\label{descriptive1}
\end{figure}
\end{document}