The following code produces a four page document when using include, or a one page document when I put the code from the include files into the main file instead. I've left all my packages in the code so any conflicts may be identified.
Any ideas?
Code: Select all
Code, edit and compile here:
\documentclass[a4paper,9pt]{article}\usepackage{float,setspace,graphicx,url,subfig,times,fancyhdr,enumerate,booktabs,epstopdf,multicol,overcite}\begin{document}\pagestyle{empty}\begin{multicols}{2}\include{file1}Some text\include{file2}Some more text% file1/file2.tex include a simple \section*{heading} and a few lines of text.\end{multicols}\end{document}