| Jan Hlavacek |
|---|
| SVSU |
We will cover using LaTeX, PreTeXt, and, if time permits, Quarto to produce a variety of accessible documents.
This is a second paragraph of the abstract for this talk, just so we have something a bit more substantial.
Some things that I found mostly produce "accessible" pdfs.
First, some issues I ran into:
LaTeX produces UA/2
Typst produces UA/1, automatically?
You can probably convert from LaTeX to Typst using Pandoc.
\DocumentMetadata
unicode-math with good unicode font (Luciole)hyperref package\DocumentMetadata{
lang = en,
pdfstandard = ua-2,
pdfstandard = a-4f, %or a-4
tagging=on,
tagging-setup={math/setup=mathml-SE}
}
\usepackage{unicode-math, fontspec}
\usepackage{luciole-math}
\setmainfont{Luciole}
\usepackage{fontawesome6}
\usepackage[implicit=false]{hyperref}
\hypersetup{
pdflang={en-US},
pdftitle={Exam 1 for Math 132B, Winter 2026},
pdfauthor={Jan Hlavacek},
pdfsubject={Statistics}
}
Tagging Status of LaTeX Packages and Classes
My pet peeve: enumitem!
Also avoid things like margin notes, footnotes etc.
\includegraphics[alt = {A short description}]{filename.png}
\begin{tikzpicture}[alt={Line with some labels}]
\draw[thick] (0,0)node[left]{origin} --node[above]{line}
(3,0)node[right]{$x$};
\end{tikzpicture}
verapdfshow-pdf-tags<?xml version="1.0" encoding="UTF-8"?>
<pretext>
<book>
<title>Hello world!</title>
<chapter>
<title>Getting Started</title>
<p>Welcome to PreTeXt!</p>
<p>Math example: <m>x^2 + 2x + 1</m></p>
<p>Display math:
<me>\frac{-b \pm \sqrt{b^2 - 4ac}}{2a}</me>
</p>
<!-- TODO: find something more to say... -->
</chapter>
</book>
</pretext>