Latex导入其他pdf文件并带页码

首先引入 pdfpages 宏包:
\usepackage{pdfpages}

然后在文档区:
\includepdfset{pagecommand={\thispagestyle{fancy}}} % 给下面引入的所有 pdf 标页码
\includepdf[pages={1, 2}]{test.pdf} % 导入 test.pdf 文件的第一页和第二页

原创文章 151 获赞 56 访问量 15万+

猜你喜欢

转载自blog.csdn.net/qq_36758914/article/details/105727145