我有一份文档,其中包含图表列表、表格列表(均在目录之后)以及文档末尾的参考文献列表。
\documentclass[a4paper,oneside,titlepage, toc=bib]{scrbook}
我想在内容列表中包含对三个列表的引用,因此我需要向 toc=... 添加多个参数,但我不知道如何实现,例如:
toc=bib, listof
是否有可能将两个参数(bib 和 listof)添加到 toc?
答案1
您可以toc=<selection>
为每个所需选项添加 , 到以逗号分隔的类选项列表中:
\documentclass[a4paper,oneside,titlepage,toc=listof,toc=bib]{scrbook}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\begin{thebibliography}{9}
\bibitem{A} Test.
\end{thebibliography}
\end{document}