
Ich habe eine Abbildung, die bereits die Untertitelung hat. Ich verwende hierfür hyperref
ein Paket.subcaption
Ich habe so etwas wie
\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}
Es funktioniert perfekt, wenn ich kompiliere. Allerdings andere Dokumente mit der gleichen Struktur, ich weiß nicht, warum stattAbbildung 1a,Abbildung 1b.... Ich erhaltePunkt 1a,Punkt 1b
Irgendeine Hilfe?