[Tex/LaTex] How to delete list of tables from table of contents

table of contents

I'm writing my thesis using Latex, in my thesis I don't have any table, however list of table title appears. How to exclude it? and suggestions?

Best Answer

In the file kfupm_thesis.cls, search for the lines

\addtocontents{toc}{\contentsline {chapter}{\numberline {}LIST OF TABLES}{\pageref{ListofTables}}}
\label{ListofTables}
\listoftables

\eject

and comment them out.

% \addtocontents{toc}{\contentsline {chapter}{\numberline {}LIST OF TABLES}{\pageref{ListofTables}}}
% \label{ListofTables}
% \listoftables

% \eject

Don't forget to run latex twice for the changes to show their effect.