
이미 하위 캡션이 있는 그림이 있습니다. 나는 이것을 사용 hyperref
하고 패키지하고 있습니다.subcaption
나는 다음과 같은 것을 가지고 있습니다
\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}
컴파일하면 완벽하게 작동합니다. 그러나 동일한 구조를 가진 다른 문서가 왜 대신되는지 모르겠습니다.그림 1a,그림 1b.... 점점항목 1a,항목 1b
도움이 필요하세요?