我尝试获取 PDF/A 文档并遵循不同的示例。pdfx
根据我的理解,使用时我不能再使用任何\hyperref
包。因此我在设置编码时遇到问题。我有以下 MWE
\PassOptionsToPackage{a-3b}{pdfx}
\PassOptionsToPackage{pdfa, pdfencoding=auto}{hyperref}
\RequirePackage{filecontents} %if filecontents should overwrite old files
\begin{filecontents}{\jobname.xmpdata}
\Title{My Title möglich ÖÜß } % <--------------------- not encoded
\Author{John Doe}
\Source{my test} %<-------- not used
\end{filecontents}
\documentclass[12pt,a4paper,oneside,openright]{book}
\usepackage{lipsum}
\usepackage{pdfx}
% \usepackage{hyperref} % comment out if using the 'pdfx' package
\hypersetup{%
anchorcolor = black,
unicode = true,
}%
% ---------- packages to be loaded after hyperref ----------%
\usepackage{bookmark} % does not work with pdfx package in lualatex?
\begin{document}
\tableofcontents
\chapter{First}
\section{First section}
\lipsum[1-2]
\section{Second section}
\lipsum[1-10]
\chapter{Second}
\section{New section}
\lipsum[1-5]
\section{Newer section}
\lipsum[1-8]
\end{document}
所以我的主要问题是如何正确设置编码?