I'm trying to use the multicol package to balance the columns above the bibliography (as in revtex) in a two-columned document. However its throwing up two errors.
Code: Select all
! LaTeX Error: Environment multicol undefined.
! LaTeX Error: \begin{document} ended by \end{multicol}.
\usepackage{multicol}
. I'm using Miktex so I'm pretty sure the correct package is installed. Code is below, with most of the irrelevent (I think) stuff removed.Code: Select all
\documentclass[12pt,a4paper,titlepage]{article}
\usepackage{multicol}
\usepackage{amsfonts,amssymb,amsmath,mathbbol}
\usepackage{graphics,graphicx,epsfig}
\usepackage{rotating,subfig}
\usepackage{caption}
\usepackage[margin=2.5cm]{geometry}
\captionsetup{font={small,it},labelfont=small}
\begin{document}
\begin{multicol}{2}
\input{intro}
\input{theory}
\input{method}
\input{results}
\input{conc}
\end{multicol}{2}
\bibliographystyle{apsrev4-1}
{\footnotesize \bibliography{luckyrefs}}
\end{document}