I am trying to get my hands dirty with tikzpicture. I'm providing below a mock-up of the setup I have at my end. The code I'm providing below might not be the best way of doing things but this is what I have right now.
\begin{figure*}[t!]
\centering%
\begin{tikzpicture}
\node [draw] at (0,0){\includegraphics[width=.090\textheight]{Image 1} };
\node [draw] at (3,2) {\includegraphics[width=.100\textheight]{Image 2} };
% For the numbering of the images because I have to refer these individual images later in the text.
\node at (-1,-1.1){\colorbox{white}{\ref{f:Image 1}}};
\node at (1.9,0.7){\colorbox{white}{\ref{f:Image 2}}};
\end{tikzpicture}
\caption{Caption text.}
\cl{%
\item\label{f:Image 1}
\item\label{f:Image 2}
}%
}%
\label{f:Main_Method}
\end{figure*}
My goal is to get rid of the extra (a) (b) from the main caption text at the bottom. Could anyone please help with this?
Many thanks
Update (Working code)
I have a massive latex document so I'm providing a simplified example here. I am using tikzpicture in many places and I would prefer sticking to the same to avoid large changes.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage[inline]{enumitem}
\usepackage{xspace}
\providecommand{\cl}[1]{\begin{enumerate}[label=(\alph)]#1\end{enumerate*}}
\begin{document}
\begin{figure*}[t!]
\centering%
\begin{tikzpicture}
\node [draw] at (0,0){\includegraphics[width=.5\textwidth]{Image 1.png} };
\node [draw] at (8,0) {\includegraphics[width=.5\textwidth]{Image 2.png} };
% For the numbering of the images because I have to refer these individual images later in the text.
\node at (-2.5,-1){\colorbox{white}{\ref{f:Image 1}}};
\node at (5.5,-1){\colorbox{white}{\ref{f:Image 2}}};
\end{tikzpicture}
\caption{Caption text.
\cl{%
\item\label{f:Image 1}%
\item\label{f:Image 2}%
}%
}%
\label{f:Main_Method}
\end{figure*}
\end{document}
Output----
My goal is to get rid of the extra (a) (b) from the main caption text at the bottom.


\documentclass{...}and ending with\end{document}. – M. Al Jumaily Jul 08 '20 at 23:46example-imageas a filename. That image (and other similar images) is installed along with themwepackage, so they will be available to most users. That said, your example, after changing the image names, doesn't actually work. I get a "missing number treated as zero" error when the\clmacro is used. Change to\caption[]{...and it works. – Torbjørn T. Jul 09 '20 at 22:11