I am writing a report in Latex and my document class must be article. I want to add some additional text under my title but I can't find anything that would correspond to a subtitle command. Does anyone have any suggestions?
\documentclass[11pt,a4paper]{article} \title {Title} \author{Name} 12 Answers
\documentclass[11pt,a4paper]{article} \title {Title} \author{Name} \makeatletter \def\@maketitle{% \newpage \null \vskip 2em% \begin{center}% \let \footnote \thanks {\LARGE \@title \par}% \vskip 1em% {\Large Whatever Subtitle you want\par}% \vskip 1.5em% {\large \lineskip .5em% \begin{tabular}[t]{c}% \@author \end{tabular}\par}% \vskip 1em% {\large \@date}% \end{center}% \par \vskip 1.5em} \makeatother \begin{document} \maketitle test \end{document} Hopefully, I found a very easy and quick solution:
\documentclass[11pt,a4paper]{article} \title {Title \\[1ex] \large Subtitle} \author{Name} \begin{document} \maketitle Text. \end{document} 2