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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p