How to add a subtitle in class article in Latex?

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} 
1

2 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like