如何从目录中删除图表列表和表格列表?我读了很多关于如何将它们添加到目录中的问题。但我确实遇到了一个问题,它们被添加了,但我不想让它们出现。
我使用 documentclass report
。
\documentclass[
paper=a4,
twoside=false,
10pt,
titlepage,
plainheadsepline,
plainfootsepline,
headsepline,
footsepline,
titlepage=false,
abstracton,
ngerman
]{report}
\usepackage[nottoc,numbib]{tocbibind}
这些是文件中的第一批命令。我不知道如何将它们添加到目录中。
我在这里制作了目录和图表列表:
\begin{document}
\input{titlepage}\clearpage
\pagenumbering{roman}
\include{abstract}
\startprintinglogo
\tableofcontents\clearpage
\printglossary\clearpage
\printglossary[type=\acronymtype,title={Abkürzungsverzeichnis}]\clearpage
\listoffigures\clearpage
\listoftables\clearpage
\lstlistoflistings\clearpage
清单列表和词汇表未添加到目录中 - 仅添加图片列表和表格列表。但为什么呢?
答案1
你想使用
\usepackage[nottoc,notlof,notlot,numbib]{tocbibind}
请参阅文档的第 2 部分tocbibind
。