无法将元数据添加到 pdf

无法将元数据添加到 pdf

我注意到我无法向我的 pdf 添加元数据。有什么线索吗?这是一个最小的工作示例。生成的 pdf 没有作者或标题元数据。我正在使用 miktex 和 texworks。

% !TeX program = xelatex
\documentclass[a4paper,10pt,draft]{report}

\usepackage[xetex]{hyperref}
%Provides some compatiblity with latex and
%Loads the fixltx2e, metalogo, xunicode, fontspec packages
\usepackage{xltxtra} 
\usepackage{xgreek} %Set greek hypenation and support in general


\usepackage{graphicx} %Extends the \includegraphics command
\usepackage{amsmath}  %Improoved math support e.g scalable brackets
\usepackage{array}  %Extends the array command
\usepackage{subfigure}
\usepackage{rotating}
\usepackage{alltt}
\usepackage{float}
\usepackage{multirow}
\usepackage{pdfpages}
\usepackage{listings}
\usepackage{unicode-math}
\usepackage{tikz} %pgf-tikz pakcage

\usetikzlibrary{intersections}
\usetikzlibrary{calc}
\usetikzlibrary{through}



\setmainfont{XITS}
\setmathfont{XITS Math}


\hypersetup{
    colorlinks=true,linkcolor=blue,linktocpage,bookmarksopen=true,
    pdfauthor=Name,
    pdftitle={Title}
}


\begin{document}
    Hello world
\end{document}

答案1

我忘记了文档类中的草稿指令。如果我删除它,标题和作者就会正确显示。

相关内容