使用 XeLaTeX 的 PDF 元数据

使用 XeLaTeX 的 PDF 元数据

是否可以让 PDFLaTeX 生成的相同 PDF 元数据在 XeLaTeX 上使用?

每当我在 Windows 上的 VSCode 上编译 XeLaTeX 时启用 和pdfauthortitle时,我都会收到错误:。但是,这些命令适用于 PDFLaTeX 编译。pdfcopyrightpdfpubtypeUndefined key 'pdfauthortitle'

如何让相同的元数据显示在 XeLaTeX 编译中?

这是我的代码:

\documentclass[11pt]{article}


\usepackage{hyperref}

\hypersetup{%
    pdftitle={My title},
    pdfsubject={Machine Learning},
    pdfauthor={My author},
    %pdfauthortitle={\xmpquote{I am Halo\xmpcomma\ FIE}},
    %pdfcopyright={Copyright (C) 2023, My author},
    %pdfpubtype={Proposal},
    pdfkeywords={{Testing 1}, {Testing 2}},
    pdfproducer={XeLateX with hyperref},
  pdfcreator={Xelatex}]{hyperref}
}

\begin{document}
Contents of the document
\end{document}

相关内容