I am trying to follow the formatting requirements for a specific conference which state that the document title must have 1.5 inch left and right margins while the rest of the paper must have 1 inch margins.
I have tried the solution shown here: Different margins for title page
However, I need the text following the title to be on the same page as the title. How can I get different margins for the document title and the document text while both appear on the same page?
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[top=1in,bottom=1in,right=1in,left=1in]{geometry}
\usepackage{times}
\usepackage{lipsum}
\newgeometry{top=1in,bottom=1in,right=1.5in,left=1.5in}
\title{A long title that wraps onto a second line to show where the margin is}
\author{\normalsize Author A. Name\\\normalsize email@example.com\\\normalsize Awesome Department\\\normalsize Big Deal University}
\date{}
\begin{document}
\maketitle
\restoregeometry
\section{Intro}
\lipsum[1-5]
\end{document}


\\if a line is too long – David Carlisle Aug 31 '13 at 22:11