-1

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.

Any suggestions? Please and thank you.

4

2 回答 2

2

在对 IEEEtran 论文进行进一步研究后,我唯一能看到您缺少的是 \maketitle,我的 make 标题应该在 \end{abstract} 之后。此外,如果您需要进一步的参考,您可以前往此处。我还发现 IEEE 提供的预填表格非常好,您可以在此处找到它们

于 2013-10-11T03:17:49.950 回答
2

Hawk_08 非常正确,但我会发布完整的 tex,因为您似乎误解了他。

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

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

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

注意命令\maketitle后面\author

于 2013-10-11T03:30:15.693 回答