如何从目录中删除表格列表?

如何从目录中删除表格列表?

我正在使用 Latex 撰写论文,论文中没有任何表格,但是出现了表格标题列表。如何排除它?有什么建议吗?

答案1

在文件中kfupm_thesis.cls,搜索以下行

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

\eject

并注释掉它们。

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

% \eject

不要忘记运行两次乳胶以使变化显示其效果。

答案2

\documentclass[...]{kfupm_thesis}添加后

\newenvironment{preamble}{%
\setstretch{1.5}
%\thispagestyle{plain}
%\pagenumbering{roman}
\eject
\tableofcontents

\eject

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

\eject

%\addtocontents{toc}{\contentsline {chapter}{\numberline {}LIST OF FIGURES}{\pageref{ListofFigures}}}
\label{ListofFigures}
\listoffigures

\eject

\setstretch{2}

}{%
\eject
\pagestyle{plain}
\pagenumbering{arabic}
\eject
}

答案3

使用:

\documentclass[ms, 12pt]{kfupm_thesis}
\let\listoftables\relax
[...]

相关内容