如何为尚不存在的页面插入目录引用?

如何为尚不存在的页面插入目录引用?

基本上,我需要在目录前插入一页——这将是一个无法修改的 PDF,并且需要包含原始文本。我想在目录中引用该页面,但不希望页码出现在其旁边。

目前,我的目录页之前只有一个\addcontentsline{toc}{chapter}{Chapter Name},但它仍然显示页码。

有没有办法可以抑制特定目录条目的页码的显示?

答案1

像这样?

\documentclass{book}
\usepackage{pdfpages}


\begin{document}
\tableofcontents
\addtocontents{toc}{\protect\contentsline{chapter}{\numberline {}Some pdf}{}}
\includepdf[pages=1]{pgfmanual}
\chapter{some section}
\chapter{another section}
\end{document}

在此处输入图片描述

相关内容