如何用Latex合并多个pdf文件?

如何用Latex合并多个pdf文件?

 

 

用TeX合并pdf, 用LaTeX合并pdf

代码:

documentclass[a4paper]{article}
usepackage{pdfpages}
egin{document}
includepdfmerge{
1.pdf,1-3} includepdfmerge{2.pdf,5-13}

end{document}

其中命令includepdfmerge{1.pdf,1-3}就是导入1.pdf的1至3页.

命令includepdfmerge{2.pdf,5-13}就是导入2.pdf的5至13页.

注意使用 pdflatex 编译文件

原文地址:https://www.cnblogs.com/tsingke/p/6674575.html