[Tex/LaTex] Getting front page title in the middle of the page when using \thispagestyle{empty}

spacingtitles

For front page of the document I'm using \thispagestyle{empty}. But this command put the title on the very first row. I want to put the title in the middle to the page. I tried with \vspace{50mm} but it does not effect the behavior of \thispagestyle{empty}. Any help in this regard will be highly appreciated. Thanks

Best Answer

Following would put the title into the middle of an empty page:

\documentclass{article}

\begin{document}
\begin{titlepage}\centering
\vspace*{\fill}
\LARGE Title
\vspace*{\fill}
\end{titlepage}
\end{document}