سلام
پیشنهاد میکنم بهجای subfigure
از subcaption
به صورت زیر استفاده کنید:
\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\begin{figure}[ht]
\centering
\begin{subfigure}[b]{0.5\linewidth}
\centering\includegraphics[width=60mm]{example-image-a}
\caption{\label{position_cl}}
\end{subfigure}%
\hspace*{0.5mm}
\begin{subfigure}[b]{0.5\linewidth}
\centering\includegraphics[width=60mm]{example-image-b}
\caption{\label{position_cd}}
\end{subfigure}
\\[5mm]
\begin{subfigure}[b]{0.5\linewidth}
\centering\includegraphics[width=60mm]{example-image-c}
\caption{\label{position_clcd}}
\end{subfigure}%
\caption{The effect of Gurney flap position on aerodynamic coefficients of pitching airfoil}
\label{flap_position}
\end{figure}
\end{document}
و خروجی:
نکتهی مهمی که باید به اون توجه داشته باشید اینه که طول دو تصویر بالایی به اضافهی فاصلهی افقی بین این دو تصویر نباید بیشتر از طول سطر باشه.
پیروز باشید.