我需要将 pdf 文件的内容作为附录添加到我的论文中。我使用
\chapter{Material used in Turing test experiment}
\label{ch:turing_materials}
\includepdf[pages=-,scale=0.8]{images/task.pdf}
不幸的是,这会将 pdf 文件的内容推到下一页,所以我得到的页面几乎是空白的,只有标题,看起来不太好看。有什么办法可以解决这个问题吗?
答案1
如果要将章节标题添加到导入的 PDF 第一页,请尝试
\includepdf[pages=1,scale=0.8,pagecommand={\chapter{Material used in Turing test experiment}\label{ch:turing_materials}\hfill}]{images/task.pdf}
\includepdf[pages=2-,scale=0.8,pagecommand={\hfill}]{images/task.pdf}