Description
Hello everyone,
I would like to know if there are any plans to support the LaTeX tagging project. Using tagging, it will be one day possible to create fully tagged pdf files from LaTeX code, in order to create accessible documents (see also https://latex3.github.io/tagging-project/).
In my project I can already use this in part, but with a kludge:
In my make.bat file I prepend the tex file created from Sphinx's make with something like this:
\DocumentMetadata{
lang = en,
pdfversion = 2.0,
pdfstandard = ua-2,
pdfstandard = a-4f, %or a-4
testphase =
{
title,
table,
firstaid
}
}
and after that modification I build this tex file. The result is then a pdf file that passes validation for the PDF/A-4F validation profile in verapdf. It would be nice to see latex_ configuration values for conf.py that can be used to prepend this to the tex file automatically. Are there already conf.py entries for that?