指定目录的确切页面

指定目录的确切页面

如果我使用像书籍这样的文档类,是否可以强制目录出现在特定页面上,比如第 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):

第 17 页 第 18 页 第 19 页

相关内容