latex文件编译时间太长

latex文件编译时间太长

我正在使用此处提供的 iiscthesis 样式文件编写我的论文的单个章节。
http://etd.ncsi.iisc.ernet.in/instructions/templates.htm

虽然包括

\begin {figure}
\end {figure}

即使只有一章,文件的编译时间也会更长。在没有图形环境时,编译会正常进行。

\documentclass[12pt,a4paper,oneside,onecolumn,english]{iiscthes}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{subfig}
\usepackage{subfloat}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{psfrag}
\usepackage{latexsym}
\usepackage{array}
\usepackage{textcomp}
\usepackage{chapterbib}
\usepackage{babel}
\pagestyle{bfheadings}
\title{Introduction}
\date{}     
\begin{document}
%\maketitle
\chapter [Introduction] {Introduction}
\noindent Inroduction
\cite{kuhn}. ..
\bibliographystyle{IEEEtran}
\begin{figure}
\includegraphics[scale=0.6]{Figure1}
\end{figure}

\bibliography{biblio,chapter1}

\end{document}

你好,现在我有了一个新的代码,而不是以前的代码。如果我对上面的代码进行任何更改,编译将再次花费大量时间。如何解决。类文件也与以前的不同。我如何将类文件附加到这个问题?

答案1

          Entering LaTeX 2.09 COMPATIBILITY MODE
 *************************************************************
    !!WARNING!!    !!WARNING!!    !!WARNING!!    !!WARNING!!   

 This mode attempts to provide an emulation of the LaTeX 2.09
 author environment so that OLD documents can be successfully
 processed. It should NOT be used for NEW documents!

 New documents should use Standard LaTeX conventions and start
 with the \documentclass command.

 Compatibility mode is UNLIKELY TO WORK with LaTeX 2.09 style
 files that change any internal macros, especially not with
 those that change the FONT SELECTION or OUTPUT ROUTINES.

 Therefore such style files MUST BE UPDATED to use
          Current Standard LaTeX: LaTeX2e.
 If you suspect that you may be using such a style file, which
 is probably very, very old by now, then you should attempt to
 get it updated by sending a copy of this error message to the
 author of that file.
 *************************************************************

我认为这个信息非常明确。

相关内容