在同一页上写两个章节

在同一页上写两个章节

我只是有个小问题。有没有可能在同一页上写两个章节?谢谢你的帮助!:)

\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在添加目录条目时阻止使用数字(有关更多信息,请参阅手册)。

相关内容