我正在使用 IEEE Transactions on Communication 中已发表的文章/期刊在 latex 中撰写我的博士论文。我有三篇文章,每篇都构成论文的一章。但是,主要的 latex 文档的序言与 IEEE 通讯的序言不同。
主要文件如下,
\documentclass[a4paper, 12pt]{report}
\usepackage{}
\begin{document}
\input{chapter-one.tex}
\input{chapter-two.tex} % ARTICLE NUMBER ONE (IEEE Preamble)
\input{chapter-three.tex} % ARTICLE NUMBER TWO (IEEE Preamble)
\input{chapter-four.tex} % ARTICLE NUMBER THREE (IEEE Preamble)
\input{Chapter-five.tex} % CONCLUSION
\end{document}
The IEEE Preamble in the published articles look like this,
\documentclass[a4paper,doublecolumn]{IEEEtrans}
\begin{document}
\title{}
\author{}
\maketitle
\begin{abstract}
\end{abstract}
\begin{IEEEkeywords}
\end{IEEEkeywords}
\section{Introduction}
Hello World!
\bibliographystyle{./IEEEtrans}
\bibliography{./IEEEabrv, ./References_File}
\end{document}
我已经浏览过常见问题解答,但实际上没有任何内容对我有帮助。如果能提供一些关于如何解决此问题的指导,我将不胜感激。
问候