我正在使用 XeLaTeX 编译文档,然后看到以下警告消息:
xdvipdfmx:warning: Object @page.1 already defined.
我不确定是什么原因导致的/如何解决它?
我在 Win 7(64 位)上使用 MiKTeX,xdvipdfmx 的版本列如下:
This is xdvipdfmx Version 20160619 by the DVIPDFMx project team,
modified for TeX Live and MiKTeX,
答案1
感谢 gernot 建议我查看页码 - 事实证明,我的标题页被指定为“第 1 页”,尽管\pagestyle{empty}
该页面被用作隐藏页码。这与主内容中的“第 1 页”(使用\pagestyle{plain}
)相冲突,导致出现上述警告消息。
标题页的设置\pagenumbering{gobble}
(按照这个答案) 解决了该问题。