Subfigures in Latex
It took me so long to identify how to include subfigures. I have used the subfig package for this. Include the following in your document class to use subfigures.
\usepackage{subfig}
To define subfigures use the following steps to configure it.
%%% %% Starts of a table %%% %%
\begin{figure}[h]
%%% %% Center alignment %%% %%
\centering
%%% %% starting first subfigure and a line break after the first figure. Starts with \subfloat tag and command shown below %%% %%
\subfloat[Title] {{\label{subfig:lable_name}}\includegraphics[width=0.6\textwidth]{pic location}
} \linebreak
%%% %% starting second subfigure and a line break %%% %%
\subfloat[Title] {{\label{subfig:lable_name}}\includegraphics[width=0.6\textwidth]{pic location}
} \linebreak
}\linebreak
\subfloat[Title] {{\label{subfig:lable_name}}\includegraphics[width=0.6\textwidth]{pic location}
} \linebreak
%%% %% Caption of all the images %%%%%
\caption{(a)Title 1; (b) Title 2; and (c) Title 3}
%%% %% End of Figure tag %%%%%
\end{figure}
Image below shows an example of subfigures in latex:
