[Tex/LaTex] long double line for title

rulestitles

How can I make a long double line for a title like the pictureenter image description here

What I have at the moment is this:

\documentclass{article} 
\usepackage{wasysym} 
\begin{document} 
\def\doubleunderline#1{%
\underline{\underline{#1}}} 

$\doubleunderline{ Title}$\\ 

\end{document}

Best Answer

Like so:

\documentclass{article}

\begin{document}
\title{Title \vspace{.5em} \hrule \vspace{.2em} \hrule}
\date{}
\maketitle
\end{document}

enter image description here

Or if you want it separate from \title:

\documentclass{article}

\begin{document}
\title{Title}
\date{}
\maketitle

\vspace{-5em} % Without this the lines would be drawn in the body
\hrule \vspace{.2em}
\hrule
\end{document}