在我的论文中,在自动生成的目录中,我不希望将内容写成 latex 中的章节

在我的论文中,在自动生成的目录中,我不希望将内容写成 latex 中的章节

我的论文目录

如您所见,在我的自动生成的目录中,内容出现了两次,一次是页面标题(我需要它),另一次是带有页码的章节名称(我不想要这个),但我不知道如何删除它。我的代码如下:

\documentclass[12pt,oneside]{Thesis}   
\newif\iftightnextchapter  
\tightnextchapterfalse
\setlength{\leftmargin}{\rightmargin}
\setlength{\textwidth}{6.0in}
\setlength{\textheight}{8.8in}
\renewcommand*\rmdefault{cmr}
\usepackage{fancyhdr} 
\usepackage[ruled,vlined,lined,resetcount,algochapter]{algorithm2e}
\makeatletter
\renewcommand\thesection{\arabic{section}}
\begin{document}
\input{abstract.tex}
\singlespacing
\input{keywords.tex}
\newpage
\singlespacing
\tableofcontents
\pagenumbering{arabic}
\setcounter{page}{1}
\end{document}

我的论文中的其余一切都进展顺利。

答案1

目录中的目录条目确实很荒谬。您可以轻松将其删除。

\documentclass[12pt, oneside]{Thesis} 
\begin{document}
{\renewcommand{\addtotoc}[1]{}
\tableofcontents}
\chapter{Wombat}
\end{document}

注意:使用章节会得到奇怪的输出。使用适当的章节是正确使用任何提供章节的类的方法。


已使用 1.4.3 版进行了测试。可能的模板,发布日期为 2014-05-17。随着版本 2.0(2015-08-24)的发布,目录默认不显示在目录中。要切换它,你必须给出全局选项toctotoc

相关内容