If I define three figures like this
\documentclass{article}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{xcolor}
\usepackage{subfigure}
\begin{document}
\begin{figure}
\subfigure[A]{\includegraphics[width=.23\textwidth]{pictures/a.jpg}}\hfill
\subfigure[B]{\includegraphics[width=.237\textwidth]{pictures/b.jpg}}
\caption{Caption 1}\label{AA}
\end{figure}
\begin{figure}
\subfigure[C]{\includegraphics[width=.23\textwidth]{pictures/c.jpg}}\hfill
\subfigure[D]{\includegraphics[width=.237\textwidth]{pictures/d.jpg}}
\caption{Caption 2}\label{BB}
\end{figure}
\begin{figure}
\subfigure[E]{\includegraphics[width=.23\textwidth]{pictures/e.jpg}}\hfill
\subfigure[F]{\includegraphics[width=.237\textwidth]{pictures/f.jpg}}
\caption{Caption 3}\label{cc}
\end{figure}
\end{document}
So the result can be showing 3 images one by one, but I want to set the number of the figure with label AA as 3, and the one with label BB as 1. The one with label CC as 2.
You might recommend changing the order in code, but I do not want to do in that way. How can I do that by LaTeX?
\usepackagecommands. However, (1) they should not be inside\begin{document}...\end{document}and (2) please add the\documentclass. – Feb 25 '19 at 12:09