0

This is my first time using Latex, and I was wondering if it was possible to vertically justify paragraphs. In this case, I am using the document class article, and I would like the title to be on top, the author tag to be in the middle and the date to be at the bottom, with equal spacing between each element.

I succeeded in aligning everything towards the center, but it isn't exactly what I am looking for.

1 Answers1

1

I don't know what you have done but hopefully the following will help you.

% titleprob.tex SE 528758 equal spacing between title page entries

\documentclass{article}

\begin{document}
\begin{center}  % centering the entries
The Title
\vfill
The Author
\vfill
The Date
\end{center}

\end{document}

The \vfill macro basically pushes apart the text above and below it. In the above, used twice, it puts equal space between the The Title, The Author and The Date entries, filling up the page.

Peter Wilson
  • 28,066