I used following solution : ( https://tex.stackexchange.com/a/540197/148579 ) in order to put multiple figures next to each other only in a single line.
But, I received following error:
Apparently, \usepackage{subfigure} cannot be used at the same time with \usepackage{subcaption} that I need it as well.
RECEIVED ERROR :
Package subcaption Error: This package can't be used in cooperation(subcaption) with the subfigure package. \begin{document}
This one one I did (exactly similar the proposed mentioned solution):
\begin{figure}
\centering
\subfigure[]{\includegraphics[width=0.24\textwidth]{Part_1_in_Figure}}
\subfigure[]{\includegraphics[width=0.24\textwidth]{Part_2_in_Figure}}
\subfigure[]{\includegraphics[width=0.24\textwidth]{Part_3_in_Figure}}
\caption{(a) blah (b) blah (c) blah}
\label{fig:foobar}
\end{figure}
Thank you to propose a solution to fix this error, or completely another solution.
subfigurepackage. It's buggy and badly deprecated. Why are you trying to use it? You can place multiple subfigures next to each with the machinery of thesubcaptionpackage alone; you do not need thesubfigurepackage to get this job done. – Mico Jul 04 '21 at 18:00