我正在使用 KOMA 类 scrreport 并希望我的附录具有以下结构:
A. 缩写
B. ...
C. ...
D. 图表目录
E. 表格目录
F. 参考书目
G. 致谢
现在我能实现的是
A. 缩写
B. ...
C. ...
图表列表
表格列表
参考书目
致谢
相关代码是
\documentclass[11pt,colorlinks=true,pdftex]{scrreprt}
\usepackage{tocloft}
\usepackage[nottoc]{tocbibind}
使用 KOMA 类选项listof=totocnumbered
没有帮助。
答案1
您正在使用的包tocloft
与tocbibind
KOMA 类配合得不是很好。通常这些包不是必需的。大多数请求都可以通过 KOMA 命令完成。
只需删除这些包,一切即可正常运行。
\documentclass[11pt,colorlinks=true,listof=totocnumbered,bibliography=totocnumbered]{scrreprt}
\begin{document}
\tableofcontents
\appendix
\chapter{Abbreviations }
\chapter{... }
\chapter{... }
\listoffigures
\listoftables
\chapter{Acknowledgments}
\end{document}
KOMA 还提供了将参考书目添加到目录中的功能。因此,您可以使用以下选项:bibliography=totocnumbered
。