How can set two images in one line without using a table, but having a caption and a label for each image? Besides image one should be labeled Figure 1 and the second figure with Figure 2. Therefore I want the following construction:
************** *******************
* * * *
* * * *
************** *******************
Figure 1: Caption Figure 2: Caption
I tried already subfigure:
\begin{figure}[!ht]
\subfigure[caption]{\includegraphics[width=0.4\linewidth]{Screenshots/step1.png}}
\subfigure[caption]{\includegraphics[width=0.41\linewidth]{boundingbox.eps}}
\end{figure}
But this made (a) and (b) and one number for both figures.
Furthermore I tried:
\begin{table}[!ht]
\begin{tabular}{p{7cm} p{7cm}}
\begin{center}
\includegraphics[width=0.7\linewidth]{Screenshots/step1.png}
\label{fig:stepone}
\caption{caption one}
\end{center} & \begin{center}
\includegraphics[width=0.7\linewidth]{boundingbox.eps}
\label{fig:steptwo}
\caption{caption two}
\end{center} \\
\end{tabular}
\end{table}
But here the the columns are labeld with Table 1 and Table 2.
