Numbering of the subfigures are not centered with the figure in LATEX

The numbering (a,b,c) in the subfigures is a little off-center with the subfigures. I keep \caption inside the subfigure section empty because I do not want any captions but if I remove it, the numbering will go away. Is there any way to keep the numbering and make it centers with subfigures?

\documentclass[conference]{IEEEtran} \IEEEoverridecommandlockouts \usepackage{cite} \usepackage{amsmath,amssymb,amsfonts} \usepackage{algorithmic} \usepackage{graphicx} \usepackage{textcomp} \usepackage{xcolor} \usepackage{algorithm} \usepackage{amsmath,amssymb} \usepackage{subcaption} \usepackage{url} \usepackage{hyperref} \begin{document} \begin{figure*}[!h] \centering \begin{subfigure}[t]{0.3\textwidth} \centering \includegraphics[scale=0.3]{Paper/results.PNG} \caption{} \label{fig1} \end{subfigure}\hfill \begin{subfigure}[t]{0.3\textwidth} \centering \includegraphics[scale=0.3]{Paper/results.PNG} \caption{} \label{fig2} \end{subfigure}\hfill \begin{subfigure}[t]{0.3\textwidth} \centering \includegraphics[scale=0.3]{Paper/results.PNG} \caption{} \label{fig3} \end{subfigure} \caption{Figures} \label{fig:my_label} \end{figure*} \end{document} 

I get this output

11

Reset to default

Know someone who can answer? Share a link to this question via email, Twitter, or Facebook.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like