I have a two column text and would like to wrap it around a table, yet in such a way that the table spans over both columns. Ideally the text in left column would continue on the left below the table and vice versa for the text in the right column. Small example:
\documentclass[english]{paper}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage{geometry}
\usepackage{array}
\usepackage{float}
\usepackage{amsmath}
\usepackage{color}
\usepackage{colortbl}
\usepackage{multirow}
\usepackage{lipsum}
\usepackage{multicol}
\usepackage{wrapfig}
\makeatletter
\geometry{verbose,tmargin=3cm,bmargin=2cm,lmargin=2cm,rmargin=2cm,headheight=2cm,headsep=2cm,footskip=3cm}
\providecommand{\tabularnewline}{\\}
\floatstyle{ruled}
\definecolor{Gray}{gray}{0.9}
\makeatother
\begin{document}
\begin{multicols}{2}
\lipsum[1-3]
\begin{wraptable}{o}{\textwidth}
\begin{tabular}{ccc|ccc|ccc} \multicolumn{3}{c|}{kappa 1} & \multicolumn{3}{c|}{kappa 2} & \multicolumn{3}{c}{kappa 3}\tabularnewline
\hline
coverage & MSD$^*$ & MSE$^{**}$ & coverage & MSD & MSE & coverage & MSD & MSE\tabularnewline
\hline
\rowcolor{Gray}
0.96 & 0.068 & 1.005 & 0.98 & 0.283 & 1.097 & - & - & -\tabularnewline
0.98 & 0.007 & 0.008 & 0.96 & 0.446 & 1.551 & - & - & -\tabularnewline
\rowcolor{Gray}
0.96 & 0.010 & 0.009 & 0.96 & -0.007 & 2.435 & 0.95 & 0.017 & 0.026\tabularnewline
\end{tabular}
\caption{table}
\end{wraptable}
\lipsum[4-5]
\end{multicols}
\end{document}

multicoldocumentation this is not possible: floats never show up on the same page on they are defined, and will show at the top/bottom of the following page. Perhapsflowframpackage is too big a weapon for such task? – guillem Nov 08 '12 at 14:51\end{multicols} \begin{table} (...) \end{table} \begin{multicols}{2}yet then the text continues on the leftmost column, instead of below the float... – fbielejec Nov 08 '12 at 15:15flowframpackage (theoretically!), but I'm affraid that withmulticolpackage is not possible. Some skilledmulticoluser may prove me wrong, though. – guillem Nov 08 '12 at 15:47