Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

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.

share|improve this question
5  
Please edit your question to make an example that shows the problem. If I add some text to your blank fields \title{aa}\author{bb}\date{dd}\maketitle and add \end{document} to make it compilable, I get as expected a single non-blank page. – David Carlisle Feb 26 at 21:01
3  
unrelated to your question but \graphicspath{Literature_review/} should be \graphicspath{{Literature_review/}} otherwise latex will look in folders L, i, ... – David Carlisle Feb 26 at 21:11

closed as too localized by lockstep, Werner, Kurt, cgnieder, Thorsten Apr 9 at 20:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.