I am trying to have a solution to shift the title page of an article up automatically (without having to set it up manually). Taking a look at the solution of Shift title and author text up? :
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{titling}
\setlength{\droptitle}{-10em} % This is your set screw
\author{The Author}
\title{The Title}
\begin{document}
\maketitle
\end{document}
Instead of manually adjusting the height as \setlength{\droptitle}{-10em} , is there a way to automatically adjust the hight with the next page's upper margin?
