I am using IEEE Access template to write a document and I've added the subcaption package in the figure* environment in order to create a full page subfigures. In this I have two problems, the first is that it messed up my captions, which are now centralized for other figures and the Figure N is now uppercased. The second one is that my images don't have the same height and thus the (a), (b), (c) are not properly aligned.
EDIT: With the MWE given by @Zarko I understood what I was suppose to give you to properly ask the question, below you have the result of the MWE and the MWE itself. As you can see, the (a), (b), (c) are not aligned, the FIGURE caption is all in capital letters and the caption itself is centralized.
I would like to know how to:
- move the
(a),(b),(c)to be in the same Y position (supposing X for width and Y for height). - have the
FIGUREto be displayed asFigure - flush it left instead of having it centralized
A more graphical way of explaining it is shown in the last picture (which is a bad paint drawing I made with the mousepad from my laptop so I excuse myself for the poor quality).
I thank everyone who commented and I hope I made my question clearer
\documentclass{IEEEaccess}
\let\setyear\year
\let\year\TeXyear
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{subcaption}
%
\usepackage{tikz}
\begin{document}
\begin{figure*}[!ht]
\begin{subfigure}{.33\linewidth}%33% of the line
\includegraphics[width=\linewidth, height = 0.3\textheight]{example-image-duck}%{figs/AFig.PNG}
\caption{}
\label{fig:AFig}
\end{subfigure}
\begin{subfigure}{.33\linewidth}%33% of the line
\includegraphics[width=\linewidth]{example-image-duck}%{figs/BFIG.PNG}
\caption{}
\label{fig:BFig}
\end{subfigure}
\begin{subfigure}{.33\linewidth}%33% of the line
\includegraphics[width=\linewidth]{example-image-duck}%{figs/Cfig.PNG}
\caption{}
\label{fig:CFig}
\end{subfigure}
\caption{Three figures: (a) AFig, (b) BFig, (c) CFig}
\end{figure*}
\EOD{}
\end{document}





example-imagewhich is provided by thegraphicxpackage. – Zarko Feb 18 '20 at 14:51tikzpackage. See answer to question https://tex.stackexchange.com/questions/528975/how-to-use-tikz . – Zarko Feb 18 '20 at 15:29