[Tex/LaTex] IEEEtran \title{ * } does not show

ieeetran

I'm practicing LaTeX with IEEEtran.cls. I'm am slowly filling in the information, but I am getting stuck from the beginning.

\documentclass[12pt, journal, compsoc]{IEEEtran}
\begin{document}

\title{ This is my practice document}
\author{Yui}

\begin{abstract}
Abstract content goes here.
\end{abstract}
\end{document}

From the above simple .tex file, after compilation in the PDF, I can see the Abstract content. However, I don't see either title or author.

Best Answer

To output the title and author of a document using IEEEtran.cls (and in almost all LaTeX classes) is produced by the \maketitle command.

Related Question