I'm new to the forum and new to LaTeX so you could say I'm a newbie

Is it possible to move the top matter (the title, author, date etc etc). I want it to be a little higher on the page than the standard. Is that possible?
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass {article}\begin{document}\title{Title}\author{Author}\maketitle\section*{Conclusions}\text\end {document}
article.cls
uses \vskip
2em before the title, you can disable it by these lines in your preamble, using Code: Select all
\makeatletter\patchcmd{\@maketitle}{\vskip 2em}{}{}{}\makeatother
Code: Select all
\usepackage[top=Xcm]{geometry}
NEW: TikZ book now 40% off at Amazon.com for a short time.