如何在 tagpdf 中定义图像上的替代文本?

如何在 tagpdf 中定义图像上的替代文本?

我安装了最新版本 (install-tl-20231205),并尝试构建一个可访问的文档。文档的第一行是:

\DocumentMetadata{testphase={phase-III,math}} 

我按照这里的说明进行操作:

https://www.latex-project.org/news/2023/03/13/latex-dev-1/

我收到以下警告:

Package tagpdf Warning: Alternative text for graphic is missing.
(tagpdf) Using 'eucr-fig2-eps-converted-to.eps' instead

我不知道如何设置图像的替代文本。我找到了辅助功能包的说明,但现在已经失效了。我担心它会干扰新方法。

答案1

\includegraphics有一个alt密钥(它或多或少在 latex-lab-graphic.pdf 中有记录):

\DocumentMetadata{testphase=phase-III}
\documentclass[a4paper]{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[alt={some example image}]{example-image}
\end{document}

相关内容