在 Latex 中插入 pdf 文件#2

问题描述 投票:0回答:1

参考之前的一个问题 在 Latex 中插入 pdf 文件 我想问一下如何通过填充一页来将PDF页面插入到乳胶文档中。

如果我包含的页面的设计元素从页面边缘延伸到零边距,则链接中提供的解决方案将导致以下结果,向包含的页面添加不同大小的白色边距: enter image description here 如何正确地做到这一点? 我做了解决方法 - 通过

解决它
\includepdf[noautoscale = true,scale=1.03 ]{<file>}

但这并不能将旧页面边缘与新页面边缘精确匹配。有纯净版吗

没有带来预期结果的解决方案: https://tex.stackexchange.com/questions/105589/insert-pdf-file-in-latex-document

谢谢!

pdf latex pdflatex
1个回答
0
投票
调整 pdf 页面的宽度和高度。首先,您应该使用

noautoscale

 才能使用宽度和高度。

备注:不要使用

fitpaper=true

trim=Left Bottom Right Top
,因为它们用于几何页面而不是调整您的 pdf 页面。

\documentclass[]{book} \usepackage[]{pdfpages} \begin{document} \includepdf[pages={1},noautoscale,width=5cm,height=10cm]{your.pdf} \end{document}
    
© www.soinside.com 2019 - 2024. All rights reserved.