IEEE 格式:单独文件中的部分会创建分页符

IEEE 格式:单独文件中的部分会创建分页符

我想让我的论文库更易读一些,所以我喜欢将各个部分分成单独的 .tex 文档。但是,这似乎与 IEEE 格式不兼容。我怎样才能将我的简介(和后续部分)放在单独的文档中,并且前面没有分页符?

MWE(抱歉,只是根据他们的例子...超长):

在 bare_jrnl.tex 中:

\documentclass[journal]{IEEEtran}


\begin{document}
\title{Bare Demo of IEEEtran.cls for Journals}

\author{Michael~Shell,~\IEEEmembership{Member,~IEEE,}
        John~Doe,~\IEEEmembership{Fellow,~OSA,}
        and~Jane~Doe,~\IEEEmembership{Life~Fellow,~IEEE}% <-this % stops a space
\thanks{M. Shell is with the Department
of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta,
GA, 30332 USA e-mail: (see http://www.michaelshell.org/contact.html).}% <-this % stops a space
\thanks{J. Doe and J. Doe are with Anonymous University.}% <-this % stops a space
\thanks{Manuscript received April 19, 2005; revised September 17, 2014.}}


\maketitle

\begin{abstract}
The abstract goes here.
\end{abstract}

\begin{IEEEkeywords}
IEEEtran, journal, \LaTeX, paper, template.
\end{IEEEkeywords}


\IEEEpeerreviewmaketitle



\include{intro}

\section{Conclusion}
The conclusion goes here.



% use section* for acknowledgment
\section*{Acknowledgment}


The authors would like to thank...

\begin{thebibliography}{1}

\bibitem{IEEEhowto:kopka}
H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus
  0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.

\end{thebibliography}

\begin{IEEEbiography}{Michael Shell}
Biography text here.
\end{IEEEbiography}
\end{document}

在 intro.tex 中:

\section{Introduction}
\IEEEPARstart{T}{his} demo file is intended to serve as a ``starter file''
for IEEE journal papers produced under \LaTeX\ using
IEEEtran.cls version 1.8a and later.
I wish you the best of success.

\hfill mds

\hfill September 17, 2014

\subsection{Subsection Heading Here}
Subsection text here.

\subsubsection{Subsubsection Heading Here}
Subsubsection text here.

答案1

使用\input而不是\include。有关详细信息,请参阅这个问题

相关内容