[Tex/LaTex] how to do 3×1 subplots in one figure

subfloats

I need to do 3X1 subplots, that is 3 row X 1 column, does someone here know how to do it?
Any help will be appreciated.
thanks in advance

Best Answer

One tabular solution coming up:

\documentclass[a4paper]{article}
\usepackage{graphicx}
\usepackage{mwe}
\begin{document}

\begin{figure}%
\centering\begin{tabular}{c}
\includegraphics[scale=0.5]{example-image-a}\\
A\\[3ex]% add a little extra space
\includegraphics[scale=0.5]{example-image-b}\\
B\\[3ex]
\includegraphics[scale=0.5]{example-image-c}\\
C
\end{tabular}
\caption{Here are three figures.}%
\label{fig:cont}%
\end{figure}

\end{document}

tabular

Why subfigure was developed in the first place is beyond me.