我想在 PDF 末尾添加一些其他 PDF 内容,2 个文档,每个文档有 4 页和 2 页。因此,我想使用\usepackage{pdfpages}
。通过将其插入文档,我收到错误:
! LaTeX Error: Option clash for package graphicx
通过搜索更多详细信息,我从 latexmkr 获得了以下信息:
The package graphicx has already been loaded with options:
[]
There has now been an attempt to load it with options
[pdftex]
Adding the global options:
,pdftex
to your \documentclass declaration may fix this.
在我的代码中我使用这个框架来存储 PDF 图片:
\usepackage[pdftex]{graphicx}
\graphicspath{{images/pdf/}}
\pdfcompresslevel=9
\usepackage{rotating}
在插入之前\usepackage{pdfpages}
我没有遇到过这种错误。我知道错误肯定在某个地方,但我没有看到。你能给我一些提示吗?