I have been trying to add subfigure captions on my document but couldnot find any. kindly help
i am attaching an result i am getting
need to add caption without changing the figure number. This is a MNRAS paper using double coulmn format.
\usepackage{multicol}
\usepackage{graphicx}
\begin{document}
\begin{figure*}
\begin{multicols}{2}
\includegraphics[width=\linewidth]{figure name}\par
\includegraphics[width=\linewidth]{figure name}\par
\end{multicols}
\begin{multicols}{2}
\includegraphics[width=\linewidth]{figure name}\par
\includegraphics[width=\linewidth]{figure name}\par
\end{multicols}
\caption{caption here}
\end{figure*}
\end{document}
If you absolutely require a solution involving the
multicol
environment then the following addition from thesubcaption
package would workNote that there are many possible other solutions ; some of which use
subfigure
,minipage
and other.