我只是有个小问题。有没有可能在同一页上写两个章节?谢谢你的帮助!:)
\documentclass[a4paper, 12pt, oneside, titlepage]{scrbook}
\begin{document}
\addcontentsline{toc}{chapter}{Abbildungsverzeichnis}
\listoffigures\vfill
\pagebreak
\addcontentsline{toc}{chapter}{Tabellenverzeichnis}
\listoftables\vfill
\end{document}
答案1
快捷而粗略的解决方案是重新定义\cleardoublepage
本地。但是,TOC 条目可以使用listof=totoc
选项进行制作。
\documentclass[a4paper, 12pt, oneside, titlepage]{scrbook}
\KOMAoptions{listof=totoc}
\begin{document}
\tableofcontents
\cleardoublepage
{
\let\cleardoublepage\relax
\listoffigures
\listoftables
}
\end{document}
正如 Johannes_B 在评论中所说,一个可能更清洁的解决方案是使用listof=leveldown
它们的标题类型并为两者\section
添加适当的类型:\chapter
\documentclass[a4paper, 12pt, oneside, titlepage]{scrbook}
\KOMAoptions{
listof=totoc,
listof=leveldown,
}
\begin{document}
\tableofcontents
\addchap{Lists}
\listoffigures
\listoftables
\end{document}
使用\addchap
而不是 可以\chapter
在添加目录条目时阻止使用数字(有关更多信息,请参阅手册)。