Currently working on a document of type article. I'd like to add two horizontal lines above and below the title. I tried the following:
\documentclass{article} \begin{document} \line(1,0){250} \title{A Title} \line(1,0){250} \author{FirstName LastName} \maketitle \clearpage \end{document} This does not give the desired effect, and splits the title page into multiple pages. Could you advise?

