I want to use the multicols environment to display a listing beneath a table:
\begin{multicols}{2}
\begin{lstlisting}[]
.....
\end{lstlisting}
\columnbreak
\begin{table}
\centering
\begin{tabular}{r|c|c|c|c|c}
.....
\end{tabular}
\end{table}
\end{multicols}
But this only displays my listing. Am I missing something?