I'm using TeXnicCenter, trying to write a LaTeX document using the article document class, and it keeps inserting a blank page at the beginning of the document.
\documentclass[12pt,a4paper,twoside]{article}
\usepackage[a4paper, margin=1in]{geometry}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{multicol}% enable use of multicolumns in specific area of the document
\usepackage{natbib}
\graphicspath{Literature_review/}
\bibliographystyle{agufull08}
\begin{document}
\title{}
\author{}
\date{}
\maketitle
\end{document}
It seems to compile without the blank page when I use TeXworks (as part of MiKTeX), but it's less practical for me to use that than TeXnicCenter.
\title{aa}\author{bb}\date{dd}\maketitleand add\end{document}to make it compilable, I get as expected a single non-blank page. – David Carlisle Feb 26 at 21:01\graphicspath{Literature_review/}should be\graphicspath{{Literature_review/}}otherwise latex will look in foldersL,i, ... – David Carlisle Feb 26 at 21:11