Digital Education Wiki Spaces
Accessibility — Assessment — CampusPress Guides — Digital Education — Gradescope Guides — Learning Technology Good Practice — Lecture Recording — Mentimeter — Moodle Baseline — Moodle How-Tos — Multimedia — Student Online Learning — Zoom
Accessibility Checklist for Quantitative Disciplines
This guide is for academic and professional staff in quantitative subjects who create and share maths documents with students. This guide provides a checklist to help make their lecture notes, problem sets, or other maths documents as accessible to students as possible.
- 1 Headings
- 1.1 Examples
- 2 Table of Contents
- 2.1 Examples
- 3 Fonts
- 3.1 Examples
- 4 Links
- 4.1 Examples
- 5 Images, Figures, and Diagrams
- 5.1 Captions
- 5.2 Alt Text
- 5.3 Descriptions
- 5.4 Examples
- 6 Tables
- 6.1 Examples
- 7 Avoid Manual Formatting
- 8 File Formats
- 9 Checklist
- 10 Further Reading and Resources
When creating course materials, it’s important that everyone can access them, regardless of ability. The following guidance outlines common areas where accessibility might be a challenge, as well as examples of proper and improper implementations in LaTeX and Quarto (extending R Markdown) formats. This is by no means an exhaustive list, but rather a starting point for creating more accessible documents in quantitative subject areas.
This checklist is partial to HTML output, as PDFs are generally not accessible.
Headings
Keep a consistent hierarchy with your headings as this determines screen reader reading order. Don’t skip heading levels when descending, such as using a heading level two and then a heading level four. Like with stairs, go down one step at a time.
Use built in headings, as they contain semantic meaning, so they are programmatically recognisable, which allows screen readers to identify them.
You can change the formatting of your heading once you’ve set it.
Examples
Table of Contents
A table of contents allows for easier navigation of a document, especially for screen readers.
Consider a table of contents that uses links to the different sections of the document.
Examples
Fonts
Use a sans-serif font, such as Calibri, Computer Modern, etc. for readability.
Ensure sufficient colour contrast between your text and background. Check your colour contrast with a checker, such as the WebAIM Contrast Checker or Contrast Checker.
Do not use colour as the sole means of conveying information (at least pair it with another method, such as adding an icon, pattern difference, or in the case of a graph, a direct label).
Use semantic formatting options, with preference to bold rather than italics, as italics can be more difficult to read for some.
Examples
Links
Add link references within documents for easier navigation.
Use meaningful text instead of ‘click here’ (screen readers can skip to just links, so context is not always available).
Examples
Images, Figures, and Diagrams
Include captions with your figures, which should provide source information and a short description of the figure.
Include alt text on all meaningful images, figures, and diagrams, as screen readers read out this text to its users. Please note that LaTeX now supports alt text.
Alt text should ideally be a maximum of 125 characters to reduce cognitive load.
Alt text can also point users to longer descriptions in the text.
Consider adding descriptions and/or data tables for complex figures, graphs, or images.
Having a text description can be beneficial for all students, as they can highlight key information and help students having difficulty in interpreting the figure.
Avoid images of equations or text as these are inaccessible.
Examples
Tables
Use tables for displaying data, not for formatting or layout purposes.
Use semantic elements if they exist, such as table headers.
Avoid merged cells, empty cells, and nested tables as these are confusing to screen readers.
Examples
Avoid Manual Formatting
Don’t use tabs or spaces to format your document.
Use built-in semantic formatting (this includes maths formatting, such as $\vec$ instead of just bolding vectors in LaTeX.
File Formats
PDFs are not accessible. You can include PDFs (and many students prefer them), but you must add alternative file types like HTML or Word documents.
Include source files wherever possible.
Use various tools to convert your documents. The Eden Digital Education team has tested and can recommend the following:
See Converting Maths Documents to Accessible HTML guidance for instructions on the above tools.