I have the problem that I have a table which includes two images next to each other and below in the next line there is the caption of the image. The problem is that the images are not shown next to each other, they are up and down. My code:
\begin{table}[!ht]\label{tab:subsecfeeling}
\begin{tabular}{|p{7cm}|p{7cm}|}
\hline
\centering
\includegraphics[width=0.7\linewidth]{Screenshots/Routing/closed_area_ex1.png}
\label{fig:closed_area_ex1}
&
\begin{center}
\includegraphics[width=0.7\linewidth]{Screenshots/Routing/closed_area_ex3.png}
%\label{fig:closed_area_ex3}
\end{center}
\\
\hline
The shown route in this figure is the shortest path from current position to the destination. In this route there exists no closed area. & The shown route in this figure is avoiding the closed door. Therefore the shortest path is to use the way through the next office. \\
\hline
\end{tabular}
\end{table}
The images shows that the images are not next to each other. I want that they are next to each other and not up and down. Besides the text in the next line has to be line braked.
I tried also centering in the second image, but then the result was almost the same as I get now. How can put both images in two columns next to each other?



7cmeach, have you tried6cmfor the widths of the images? – Mico Jan 21 '14 at 08:16{|p{7cm}|p{7cm}|}into{|p{6cm}|p{6cm}|}is not changing anything. Also to reduce the size of the image from 0.7 into 0.6 or less. – Irgendw Pointer Jan 21 '14 at 08:22width=0.7\linewidthtowidth=6cm, for the widths of the images. – Mico Jan 21 '14 at 08:29