I have a few pages that I've texed. I wanted to start the document with a title page but if I do that it produces an empty page numbered '1' between the title page and the first section. How to prevent that? I tried document classes report, article and book, \maketitle as well as \begin{titlepage}/ \end{titlepage}.
The code looks like this:
\documentclass{report}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\textwidth 13cm
\title{Author: My title}
\author{a. name}
\maketitle
\hfill
\chapter{Chapter title}
\section{section title}
\end{document}
Thanks for your help.
\textwidth 13cmafter\begin{document}? Use thegeometrypackage to set up the pagination parameters. – egreg Nov 18 '12 at 23:22