When using flushlefta blank page is added before my title page. I would like to remove this but am not sure how.
I've read many of the similar "blank page" questions, but didn't find one related to my specific problem. When I remove \begin & \end{flushleft}, I don't get the extra blank page.
Here is my code:
\documentclass[12pt]{article}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage[letterpaper]{geometry}
\geometry{verbose,letterpaper,tmargin=2.54cm,bmargin=2.54cm,lmargin=2.54cm,rmargin=2.54cm}
\usepackage{lineno}%linenumbers
\begin{document}
\begin{spacing}{1.9}
\begin{flushleft}
\graphicspath{{Figures/}}
\title{Something}
\author{xxx}
\date{}
\maketitle
\linenumbers
\clearpage
\end{flushleft}
\end{spacing}
\end{document}

flushleft(or thespacing) there? If you want them to apply to your title page, I'm afraid this is not the way to do it... If not, move the two\begins after the\maketitlecommand. – nickie Sep 09 '14 at 21:56\raggedrightdeclaration after\maketitle. Don't use a globalspacingenvironment, but rather\setstretch{1.9}, at the same location. – egreg Sep 09 '14 at 23:38