Is there any way to generate a PDF/A-4 document using pdflatex? I tried the following:
\DocumentMetadata{pdfversion=2.0, pdfstandard=A-4}
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\hypersetup{%
pdftitle={Title},
pdfauthor={Author},
pdfdisplaydoctitle
}
\begin{document}
...
\end{document}
Unfortunately, it doesn't work. Reader shows that PDF version is 2.0 but it does not show a blue header announcing the PDF/A mode. Verification of compliance with the PDF/A-4 standard also fails.
Is there anything I can do to generate a PDF/A-4 document? I'm using MiKTeX on Windows.
pdfx.sty– MadyYuvi Mar 17 '23 at 15:08pdfxpackage does not support PDF/A-4 documents. – abhinc Mar 18 '23 at 13:16