如何删除book
课程生成的双重“内容”标题?
我尝试使用memoir
课堂上给出的以下建议,但这些都无法解决我的问题。
我的文档结构如下:
\documentclass[12pt, twoside, a4paper]{book}
\usepackage{tocbibind}
\setcounter{secnumdepth}{0}
\begin{document}
\frontmatter
\setcounter{tocdepth}{1}
\tableofcontents
\mainmatter
\chapter[Chapter 1]{Chapter 1}
\appendix
\chapter[Appendix 1]{Appendix 1}
\backmatter
\cleardoublepage
\phantomsection
\clearpage
\begin{thebibliography}{}
\end{thebibliography}
%\addcontentsline{toc}{chapter}{\numberline{}Bibliography}%
\chapter[Summary]{Summary}
\end{document}
我可以通过以下方式解决目录中的自引用“内容”问题:
删除前面的“%”
\addcontentsline{toc}{chapter}{\numberline{}Bibliography}
并移除
\usepackage{tocbibind}
\phantomsection
然而,这又带来了一个新问题。在这种情况下,参考书目不再与附录(在目录中)一起排列。相反,它与附录的标题(没有附录编号)隔开。
我想要的是让参考书目与目录中的后记部分(摘要)内联出现,而不需要“内容”标题的自我引用。
答案1
我根据以下信息找到了解决方案:
以下答案对我有帮助
https://tex.stackexchange.com/a/8459/16059
诀窍是更换
\usepackage{tocbibind}
和
\usepackage[nottoc,numbib]{tocbibind}
根据帖子,这应该适用于所有标准类(,,article
)。book
report