Hey,
ich habe das Problem, dass die Abbildungsnummerierung nicht stimmt. Im Prinzip nutze ich fogendes:
\documentclass{article}
\usepackage{caption}
\usepackage[tableposition=bottom,font=bf,labelfont=bf]{caption}
\usepackage[tableposition=bottom,font=small,labelfont=small, labelformat=empty,]{subcaption}
\usepackage{float}
\usepackage{capt-of}
\begin{document}
Hier will ich auf das Bild \ref{fig:bild} hinweisen.
\begin{minipage}[h]{1\textwidth}
\centering
\includegraphics[width=0.5\textwidth]{bild.png}
\captionof{figure}{bild}
\subcaption{bildbeschreibung}
\label{fig:bild}
\end{minipage}
\end{document}Wenn ich das so mache passiert folgendes:
Mein Bild wird korrekt beschriftet z.B.: 2.1 Bild, darunter dann die Bildbeschreibung ohne Nummerierung.
Wenn ich jetzt den \ref Befehl nutze wird aber 2.2.a ausgegeben, was ich nicht so will.
