
Tenho uma figura que já tem a sublegenda. Estou usando hyperref
um subcaption
pacote para isso.
eu tenho algo parecido
\documentclass{article}
\usepackage{subcaption}
\usepackage{hyperref}
\usepackage{graphicx}
\begin{document}
\autoref{Fig1a}, \autoref{Fig1b}, \autoref{Fig1c} and \autoref{Fig1d} are in \autoref{Fig1}
\begin{figure}[htb]
\centering
{
\includegraphics{example-image}
\phantomsubcaption\label{Fig1a}
\phantomsubcaption\label{Fig1b}
\phantomsubcaption\label{Fig1c}
\phantomsubcaption\label{Fig1d}
}
\caption{Image description:
\textbf{(a)}~figure 1a,
\textbf{(b)}~figure 1b,
\textbf{(c)}~figure 1c and
\textbf{(d)}~figure 1d
}
\label{Fig1}
\end{figure}
\end{document}
Funciona perfeitamente quando compilo. Porém, outro documento com a mesma estrutura, não sei porque em vez deFigura 1a,Figura 1b.... Estou entendendoitem 1a,item 1b
Qualquer ajuda?