I am new to LaTeX and I am using two figure side by side. But the problem is that I cannot see the first figure's caption also the second figure's caption is placed under the first figure. Can anyone help me to fix this problem? My code is shown below.
Code: Select all
\begin{figure}[ht]
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[scale=0.75]{singleclustertopologyeps}
\caption{Single Cluster Topology}
\label{fig3.1}
\end{minipage}
\hspace{0.1cm}
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[scale=0.75]{chaintopologywithtwohopseps}
\caption{Chain Topology with Two Hops}
\label{fig3.2}
\end{minipage}
\end{figure}