不带编号的 includepdf 和 tableofcontents

不带编号的 includepdf 和 tableofcontents

我尝试使用 pdfpages 包含整个 pdf 文件,但我不会在目录中使用编号。以下是 MWE,它说明了这个问题。

\documentclass[a4paper]{scrreprt}
\usepackage{pdfpages}
\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\begin{document}
\tableofcontents
\addchap{Test}
Only a test
\addsec{Another Test}
\includepdf[pages=-,addtotoc={1,section,1,{Another PDF},test}]{test.pdf}
\end{document}

我不会toc为所包含的 pdf 中的条目编号。好吧,我可以将表示部分深度的数字设置为高于tocdepth/ 的值secnumdepth(这是有效的,例如 \includepdf[pages=-,addtotoc={1,section,6,{Another PDF},test}]{test.pdf} )。

有没有更智能的解决方案?

答案1

您知道 KOMA 类提供的命令addsec。您可以将其用作以下选项addtotoc

\includepdf[pages=-,addtotoc={1,addsec,1,{Another PDF},test}]{test-crop.pdf}

相关内容