我想创建一个包含一些元数据的 PDF,pdfx 似乎是个不错的选择。这是我的 MWE
\begin{filecontents*}{\jobname.xmpdata}
\Title{Foo}
\Author{Hennich}
\Keywords{pdfx\sep test}
\Subject{description}
\setRGBcolorprofile{sRGB2014.icc}
{sRGB2014}
{sRGB2014}
{http://www.color.org}
\end{filecontents*}
\documentclass{article}
\usepackage[a-2b]{pdfx}
\begin{document}
Text
\end{document}
配色方案来自https://www.color.org/srgbprofiles.xalter。我只是用 进行编译pdflatex
。但是,当我用 检查元数据时exiftool
,它们会显示出来,但在错误的字段中。除其他内容外,我得到了
Title : Foo
Creator : Hennich
Description : description
Subject : pdfx, test
我预计
Title : Foo
Author : Hennich
Subject : description
Keywords : pdfx, test
我该如何解决这个问题?我有装有 texlive2017 的 Ubuntu 18.04。