[Tex/LaTex] Subtitle with the \maketitle page

titles

Does there exist some command for subtitles in the \maketitle thing?

Best Answer

In the standard classes: no. In the KOMA-Script classes: yes.

\documentclass{scrartcl}

\begin{document}

\title{(Title)}
\subtitle{(Subtitle)}
\author{(Author)}

\maketitle

\end{document}

enter image description here