Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to put lables under each image in LaTex?

I am using overleaf to write my paper. I want to put (a)(b)(c)(d) labels under each image. How can I do that?

\begin{figure}[ht!] %!t
\centering
\includegraphics[width=1.5in]{15_6277.png}
\includegraphics[width=1.5in]{16_6277.png}
 \\[\smallskipamount]
\includegraphics[width=1.5in]{17_6277.png}
\includegraphics[width=1.5in]{18_6277.png}
 \\[\smallskipamount]
\includegraphics[width=1.5in]{19_6277.png}
\includegraphics[width=1.5in]{ensemled_6277.png}

\caption{Experiments Results and Final Ensemble Result}
\label{Compare_S}
\end{figure}

enter image description here

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Just put it in a tabular environment inside the figure;

\begin{figure}[!htbp]
    \centering
    \begin{tabular}{cc}% l,c,r
      \includegraphics{} & \includegraphics{}\\
      (a) & (b)\\
      \includegraphics{} & \includegraphics{}\\
      (c) & (d)\\
    \end{tabular}
  \caption{\label{fig:label}Caption}
\end{figure}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading