\includepdf 从章节中获取标题

\includepdf 从章节中获取标题
\addcontentsline{toc}{chapter}{Bibliografie}
\bibliography{Referenties}
\newpage
\includepdf[fitpaper=true, pages={-}, angle=0, pagecommand={}]{laatstepagina.pdf}
\markboth{}{}
\end{document}

我在 之后附加了一页bibtex,因为我将用全彩页作为最后一页打印我的报告。不知何故,我的 的标题bibliography最终出现在我的 中.pdf

答案1

pagecommand={}从 的选项列表中删除。则将使用\includepdf默认值。pagecommand=\thispagestyle{empty}

如果页面样式应该与其他页面相同,则使用\markbothbetween\clearpage\includepdf

\clearpage
\markboth{}{}
\includepdf[fitpaper=true, pages={-}, angle=0, pagecommand={}]{laatstepagina.pdf}

或者使用不同的页面样式,如plainpagecommand=\thispagestyle{plain}

相关内容