[Tex/LaTex] Table (page width) in multicol

floatsmulticol

I'm writing a scientific article (two-column style), and I need to show some results in a table with lots of columns, so I have to put a page-width table in the bottom of the page. How can I do?

Best Answer

Instead of using \documentclass[twocolumn]{article}, you can control when to start and end the 2 columns using multicol package as follows

\documentclass{article}

\usepackage{multicol}
\setlength{\columnsep}{20pt}  %adjust as needed
\setlength{\columnseprule}{0.01pt} %adjust as needed
\renewcommand{\columnseprulecolor}{\color[rgb]{0.6,0.6,0.6}} %adjust as needed

\begin{document}

\begin{multicols}{2}
text
\end{multicols}

\begin{tabular}{....} %this will now use the full page
..........
\end{tabular}

\begin{multicols}{2}
text
\end{multicols}

\end{document}