我正在使用pdfpages
包从 pdf 文件中插入一些页面。
我使用以下选项\includepdf
openright=false,%
frame=true,%
trim=3.5cm 2.8cm 3.5cm 5cm,%
clip,%
scale=.4,%
这样框架与正文相比就很小了。但问题是该页面被插入到另一页中,因此节标题位于单个页面上。
换句话说,我正在这样做:
\newpage
\section{foo}\label{foo}
\includepdf[%
openright=false,%
frame=true,%
trim=3.5cm 2.8cm 3.5cm 5cm,%
clip,%
scale=.4,%
pages=1,%
pagecommand={},%
]{myfile}
但输出是(showframe
仅证明该框适合文本区域)
我尝试检查该sty
文件以查看是否存在\newpage
,但没有成功。
知道如何避免插入新页面吗?
答案1
pdfpages 文档
页面命令声明在每张纸上执行的 LATEX 命令。(默认值
pagecommand={\thispagestyle{empty}}
:)
我们需要的是
\includepdf[%
openright=false,%
frame=true,%
trim=3.5cm 2.8cm 3.5cm 5cm,%
clip,%
scale=.4,%
pages=1,%
pagecommand={\section{foo}\label{foo}},%
]{myfile}