[Tex/LaTex] Subtitle in IEEE document class

ieeetran

How can I add a subtitle to my Latex document using the IEEETran document class?

I would like to know if it is possible to use a built-in command that gives me the regular title in addition to a subtitle written in a slightly smaller font?

I found this question related to it, where they recommend to use a title page, but this does not seem to fit my needs. Also, I looked in the documentation for the IEEETran class but was unable to find it there.

Best Answer

You could do something like this.

\documentclass{IEEEtran}
\title{A clever paper \\ {\large really clever}}
\author{A Person}
\begin{document}
\maketitle
\end{document}