我正在尝试通过 xelatex 在 pdfmanagement-testphase.sty 和 tagpdf.sty 的帮助下创建一个可访问的 pdf,我需要设置阅读顺序,针对以下几点,
当存在脚注链接时,阅读顺序应该是先阅读脚注文本,然后阅读链接后的下一个单词
当存在参考链接时,阅读顺序应该是先阅读当前引用的参考文献,然后再阅读以下单词
其他引用(例如图表)也一样
我创建了 pdf 但脚注却出现在页面末尾,可以解决这个问题吗?
平均能量损失
\RequirePackage{pdfmanagement-testphase}
\DeclareDocumentMetadata{testphase=tagpdf,
pdfversion=1.7,
debug={%para=show,
log=v,uncompress},
uncompress,
activate=tagging,
}
\documentclass{book}
\usepackage{tagpdf}
\usepackage{hyperref}
\begin{document}
\chapter{Sample Chapter}
This is the text\footnote{Foot note text} of testing.
Hope this is the example of \cite{ref1} and \cite{ref2}
\begin{thebibliography}{9}
\bibitem{ref1} Ref Text One.
\bibitem{ref2} Ref Text Two.
\end{thebibliography}
\end{document}