can Quarto (1.9) support accessible math in pdf via MathML? #14119
-
DescriptionFrom the documentation, I know that you've added support for ua-2 accessibility (thanks!). When I use this, my pdf passes Ally checking in terms of tagging (in my university's Canvas Ally checking tool). However the Ally check flags that equations are images that are not accessible. From this LaTeX documentation, it appears that what is needed in the generated .tex file is: Does Quarto 1.9 support accessibility for equations? If not, are there plans to support this? Additional comments:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
|
See the issues and 1.9 changelog. |
Beta Was this translation helpful? Give feedback.
-
|
Hmm, we are using veraPDF for validation and this test case passes: Does the resulting PDF pass Canvas Ally? |
Beta Was this translation helpful? Give feedback.
I've independently verified this test using Claude and pikepdf. The PDF has two
/Formulastructure elements, each with:/AF(Associated File) array containing MathML asapplication/mathml+xmlwith/AFRelationship /Supplement— this is the correct UA-2 mechanism<math xmlns="http://www.w3.org/1998/Math/MathML"> <mi>𝐸</mi> <mo>=</mo> <mi>𝑚</mi> <msup> <mi>𝑐</mi> <mn>2</mn> </msup> </math>)/AFRelationship /SourceHowever, there is no
/Altor/ActualTexton the Formula elements. This is by design — UA-2 uses the embedded MathML AF as the accessible representation instead of alt text.So this …