[Tex/LaTex] Titlepage and vertical space

spacingtitlesvertical alignment

I need to reduce the vertical space up the title of the only front page. I'm using the book class and specifically the titlepage enviroment. \vspace{-2.0cm} doesn't work…
Any suggestion?

Best Answer

Do that with the titling package: it defines a \droptitle length which you can choose at will. Example of use:

\documentclass[a4paper,oneside,12pt]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} %
\usepackage{lmodern} %
\usepackage[top=33mm, bottom=38mm, left=26mm, right=20mm, showframe]{geometry} %
\usepackage[x11names]{xcolor}
\usepackage{titling}

\pretitle{\begin{center}\bfseries\LARGE\color{IndianRed3}}%
\posttitle{\end{center}\mdseries}
\droptitle = -20mm
\title{A Subtitle}%
\author{Author names}
\date{\today}

\begin{document}

\maketitle

Blahblahblah…

\end{document} 

enter image description here