In a lot of journals it is common to have single digit figure numbers and denote parts in the figures as (a), (b), and so on. I wanted to use a similar style. After reading the documentation to the caption package and the cleveref package I did not find anything similar.
I do not want to break up the picture in two parts and use subfigure with two captions but keep it all in one.
Is there an easy way to realize this? My example looks as follows without the correct references:
\documentclass{scrbook}
\usepackage{caption}
\usepackage{cleveref}
\begin{document}
\begin{figure}
\centering
a \rule{10pt}{10pt} \hspace{1cm} b \rule{15pt}{15pt}
\caption{Common text here. \label{part_a}\textbf{(a)} Description of a. \label{part_b}\textbf{(b)} Description of b. }
\end{figure}
This should read fig. 0.1a and fig. 0.1b but it is only \cref{part_a} and \cref{part_b}.
\end{document}
This gives this output:



aandbcharacters in the picture , but also you would encounter many difficulties when dealing with the publication office. It's quite easy to usesubcaption(notsubfigurewhich is obsolete now) package, is there any particular reason why you don't want to use it? – percusse Jul 22 '12 at 14:19aandbcharacters are artificial but they also appear with a subcaption, just not in the picture itself. – Alexander Jul 22 '12 at 14:43