将 \geometry (geometry) 设置的布局参数应用于 \includepdf[ (pdfpages)

将 \geometry (geometry) 设置的布局参数应用于 \includepdf[ (pdfpages)

我是 LaTeX 新手,已经制作了一些质量令我满意的文档。现在我决定用 LaTeX 写论文。为此,我使用了 Overleaf 的模板 (https://www.overleaf.com/latex/templates/template-for-a-masters-slash-doctoral-thesis/mkzrzktcbzfl) 作为我的论文。此模板通过 \geometry 定义了几个布局参数:

\geometry{
paper=a4paper, % Change to letterpaper for US letter
inner=2.5cm, % Inner margin
outer=3.8cm, % Outer margin
bindingoffset=.5cm, % Binding offset
top=1.5cm, % Top margin
bottom=1.5cm, % Bottom margin
%showframe, % Uncomment to show how the type block is set on the page
}

我目前正在尝试在文档中包含多页 pdf 文件,这也可行。

\includepdf[pages={1-}]{example.pdf}

但是,pdf 不会像普通文本主体那样接管 \geometry 最初定义的参数。相反,嵌入的 pdf 会居中。

我已经搜索过论坛帖子并尝试了各种论点,但还没有找到解决问题的方法。有人知道如何采用嵌入 PDF 的布局吗?

编辑:这是一个最小的工作示例:

\documentclass{article}
\usepackage{geometry} 
\usepackage{pdfpages}
\geometry{
    paper=a4paper, % Change to letterpaper for US letter
    inner=2.5cm, % Inner margin
    outer=3.8cm, % Outer margin
    bindingoffset=.5cm, % Binding offset
    top=1.5cm, % Top margin
    bottom=1.5cm, % Bottom margin
    %showframe, % Uncomment to show how the type block is set on the page
}
\begin{document}
\includepdf[pages={1-}]{example.pdf}
\end{document}

更新:

我现在发现,可以通过 pdfpages 参数“offset”(带有 2 个参数)控制“inner”、“outer”、“top”、“bottom”的几何参数。就我而言,我对文档使用双面选项。在这种情况下,第一个“offset”参数表示向“outer”方向移动,第二个参数表示向“top”方向移动。在我看来,pdfpages 只允许为双面文档的水平间距选择一个参数。然而,在模板中,为几何定义的左右边距距离不相等。此外,几何中的“bindingoffset”参数将指定的长度添加到内边距以用于装订目的。我是否正确理解了双面文档的几何格式无法传输到 pdfpages?如果是这样,有人知道可以做到这一点的 pdfpages 替代品吗?

更新2:

我仍在尝试将几何参数应用于粘贴的 PDF,但仍然找不到解决方案。难道没有人真的能解决这个问题吗?

相关内容