如何连接不同的乳胶文件

如何连接不同的乳胶文件

假设我编写了几个 latex 文件,结果有几个 pdf 文件我想将它们连接在一起。

现在假设不同的 latex 文件是用不同的模板和包编写的,而我不想把 latex 文件弄得太乱。连接这些文件最简洁的方法是什么?

使用相同模板(例如 tufte-latex)编写 pdf 文件的情况是否会使连接变得更容易?

答案1

如果您只想简单地将所有 pdf 放在一起,您可以使用以下基本代码:

\documentclass[a4paper]{article}
\usepackage{pdfpages}

\begin{document}

% first page of the pdf
\includepdf{document-title}

% all pages
\includepdf[pages=-]{document-title}

% all pages starting from page 2 
\includepdf[pages=2-]{document-title}

\end{document}

欲了解更多信息,请参阅此处:pdfpages 文档

这不会改变您的 LaTeX 文件。但是,生成的 PDF 中的超链接将不起作用。(此外,页码等也不会改变。)

(正如@leandriis 所提到的)

相关内容