如何从 pdfpages 中删除目录中的编号

如何从 pdfpages 中删除目录中的编号

如何删除目录中包含的 PDF 部分的编号。图片显示了顶部的内容以及底部的内容。我希望它在目录中显示包含的 PDF 作为 P05-001,而不显示 9。以下是代码:

\chapter*{Anexo: Procedimientos}
\label{anexo:Procedimientos}
\addcontentsline{toc}{chapter}{Anexo: Procedimientos}
\markboth{Anexo: Procedimientos}{}
\includepdf[pages={-},addtotoc={1, section, 2, P05-001, P05-001}, scale=0.7, pagecommand={}]{pdf/proc_2015/p05_001_2015.pdf}    

在此处输入图片描述

答案1

章节中\backmatter没有编号,但会自动进入目录;因此如果您有多个这样的“anexos”,最好使用此功能。

\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{pdfpages}

\begin{document}

\frontmatter
\tableofcontents
\mainmatter
\chapter{Blurb}

\section{Blurb blurb}

\backmatter
\setcounter{secnumdepth}{-1} % no level is numbered

\chapter{Anexo: Procedimientos}

\includepdf[
  pages={-},
  addtotoc={1, section, 2, P05-001, P05-001},
  scale=0.7,
  pagecommand={}
]{example-image.pdf}

\end{document}

在此处输入图片描述

相关内容