Any help would really be great.
I have been given this template for a 2 columns paper.
The first line of the latex file is:
\documentclass[twocolumn]{article}
Everything is fine as far as 2 columns are concerned but now I have to insert a big table which is not accommodating, so I have to change to 1 column.
I was going through some previous forum questions and the given solution is:
Code: Select all
\documentclass{article}
\usepackage{multicol}
\usepackage{blindtext}
\begin{document}
\begin{multicols}{1}[\textbf{Example for a one column text}]
\blindtext
\end{multicols}
Somehow, this doesn't work for me. Is there any other way around when the documentclass is already predefined with option [twocolumn] ?
Thanks