如果我使用像书籍这样的文档类,是否可以强制目录出现在特定页面上,比如第 17 页?
答案1
您可以使用例如来实现后页。
更新用 替换了 章节的生成,并\loop
使用了blindtext
包。并\clearpage
在 之后添加了\tableofcontents
。
\documentclass{book}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{afterpage}
\def\TimeForToc?{\ifnum\value{page}<17 \afterpage{\TimeForToc?}\else
\tableofcontents\clearpage\fi}
\AtBeginDocument{\afterpage{\TimeForToc?}}
\begin{document}
\blinddocument
\blinddocument
\blinddocument
\blinddocument
\blinddocument
\blinddocument
\end{document}
页面17-18-19
(转换后的部分裁剪dvipng
):