I have a table and a figure, I want to align them one next to the other (not one under the other):
\documentclass{llncs}
\usepackage{capt-of}
\usepackage[demo]{graphicx}
\begin{document}
\begin{table}[t]
\begin{minipage}[t]{.5\textwidth }
\footnotesize
\begin{tabular}{ | c || c | c | c | c | } \hline
\textbf{ABC} & \textbf{KO} & \textbf{Ro} & \textbf{Ov} & \textbf{Params} \\ \hline
\multicolumn{5}{|c|}{\textbf{Well this is a text here}} \\ \hline
\textit{A1} & 123 & 123 & 123 & 123 \\ \hline
\textit{Z2} & 123 & 123 & 123 & 123 \\ \hline
\multicolumn{5}{|c|}{\textbf{Well this is another text here)}} \\ \hline
\textit{O1} & 123 & 123 & 123 & 123 \\ \hline
\textit{U9} & 123 & 123 & 123 & 123 \\ \hline
\end{tabular}
\caption{results in this table}
\label{validation}
\end{minipage}%
\begin{minipage}[t]{.5\textwidth}
\includegraphics[width=0.45\textwidth]{plot.pdf}
\caption{This is a figure not a table}
\label{plot}
\end{minipage}
\end{table}
\end{document}


beamerthere is thecolumnsenvironment which allows you to do this. I'm not sure if this environment is available outside ofbeamer. – Leeser Jul 05 '12 at 12:48beamer? – Leeser Jul 05 '12 at 13:28minimage(as shown below) unless you need your content to spread over many pages (then you may usemulticolor some other two or more column layout facilities) – bloodworks Jul 05 '12 at 13:49columnsenvironment inbeamer(which there is) or "nope" that thecolumnsenvironment isn't available outside ofbeamer, which is quite possible. Or "Nope" that I'm completely wrong on all accounts! Just a clarification on what the answer "nope" was referring to. I'm not arguing that your solution is wrong. A solution inbeamerwhere there is a picture in one column and table is given in http://tex.stackexchange.com/questions/50506/setbeameruncovered-problem-bug – Leeser Jul 05 '12 at 14:50beamerlikecolumnsenvironment outsidebeamer. Nothing personal. – bloodworks Jul 05 '12 at 15:00