Tagged PDF and Accessibility: How to Make PDFs Usable for Everyone
Published by PDFToolz · Technical references listed below
A tagged PDF carries a hidden layer of structure that tells assistive technology what each piece of content actually is: a heading, a paragraph, a list, a table, or an image. Without those tags, a screen reader sees only a flat stream of characters (or nothing at all on scanned pages), and users who are blind or have low vision cannot navigate the document, understand its hierarchy, or complete its forms.
This guide explains what a tagged PDF is, why reading order matters more than visual layout, how to write useful alternate text, and which standards apply (PDF/UA, WCAG, and Section 508). It also walks through adding and checking tags, testing with real screen readers, and handling the two hardest cases: forms and data tables.
What a Tagged PDF Actually Is
Introduced in PDF 1.4, tagging adds a logical structure tree to a document, separate from how the page looks. The tree is a hierarchy of structure elements rooted in the document's StructTreeRoot, and each element maps to a standard type: H1 through H6 for headings, P for paragraphs, L, LI, and LBody for lists, Table, TR, TH, and TD for tables, and Figure for images.
This structure is what lets a screen reader announce "heading level 2" or "list, 5 items," and what lets users jump between headings instead of reading every word in sequence. It also drives reflow on small screens and export to accessible formats like HTML or Word.
Critically, tags are invisible on the page. A document can look perfectly formatted and still be completely untagged, which is the default state of most PDFs produced by scanners, screenshots, or older export tools.
- Headings: H1-H6 convey document hierarchy
- Text blocks: P (paragraph), Span, Quote
- Lists: L, LI, Lbl (label), LBody
- Tables: Table, TR (row), TH (header cell), TD (data cell)
- Graphics: Figure, with an /Alt alternate-text entry
- Links and references: Link, Reference, Note
Reading Order vs. Visual Order
Sighted readers scan a page spatially, jumping between columns, sidebars, and captions. A screen reader instead follows the sequence of the structure tree, one element after another. If that tag order does not match the intended reading order, content is announced in a confusing, sometimes nonsensical sequence, even when the page looks correct.
Multi-column layouts are the classic failure: text can be read straight across both columns instead of down one and then the next. Pull quotes, footnotes, running headers, and figure captions also commonly land in the wrong place.
Fixing reading order means arranging the tags in logical order, not moving anything visually. In practice you verify order in a tag or order panel and confirm it by listening with an actual screen reader, since visual proximity is no guarantee of correct sequence.
Alternate Text, Artifacts, and Language
Every meaningful image needs alternate text (the /Alt entry on a Figure tag) that conveys its purpose or content concisely. Describe what the image communicates, not that it is an image; a chart's alt text should summarize the trend or key data point, not just say "chart."
Content that carries no information, such as decorative borders, background watermarks, page numbers, and repeated header or footer graphics, should be marked as an artifact so screen readers skip it entirely. Marking decoration as an artifact matters as much as tagging real content, because it removes noise.
Finally, set the document's default language (the /Lang entry) and mark any passages in a different language so the screen reader uses correct pronunciation. A meaningful document title in the metadata, shown instead of the file name, rounds out the basics.
- Write alt text that conveys meaning, not "image of..."
- Mark decorative and repeating content as artifacts
- Set the document language and any inline language changes
- Give the file a descriptive title in document properties
- Do not leave complex images with empty or auto-generated alt text
The Standards: PDF/UA, WCAG, and Section 508
PDF/UA (ISO 14289-1) is the technical standard specifically for accessible PDF, defining exactly how tags, artifacts, metadata, and structure must be implemented; PDF/UA-2 (ISO 14289-2, published 2024) extends it to PDF 2.0. The companion Matterhorn Protocol breaks PDF/UA into 31 checkpoints and 136 failure conditions that tools use to test conformance.
WCAG is the broader, technology-neutral standard, with WCAG 2.1 published by the W3C in 2018 and WCAG 2.2 in 2023. It is organized around four principles, Perceivable, Operable, Understandable, and Robust, with conformance levels A, AA, and AAA. Most laws target Level AA. PDF/UA and WCAG overlap heavily, so meeting PDF/UA satisfies most PDF-relevant WCAG criteria.
In the United States, Section 508 of the Rehabilitation Act requires federal agencies to make electronic documents accessible and incorporates WCAG 2.0 Level AA by reference. The ADA drives private-sector obligations, and a 2024 Department of Justice rule requires state and local governments to meet WCAG 2.1 AA for web content and mobile apps. In the EU, the EN 301 549 standard (which references WCAG) underpins comparable requirements. Beyond legal exposure, accessible documents are simply usable by more people, which is the ethical baseline.
- PDF/UA - ISO 14289-1; PDF/UA-2 (2024) covers PDF 2.0
- Matterhorn Protocol - 31 checkpoints, 136 failure conditions
- WCAG - POUR principles, Levels A/AA/AAA (2.1 and 2.2)
- Section 508 - U.S. federal requirement, references WCAG 2.0 AA
- ADA and EN 301 549 - broader legal drivers in the US and EU
Accessible Forms and Tables
Interactive forms must have tagged, labeled fields. Each field needs a tooltip (the TU entry) that names its purpose, because that label is what the screen reader announces. Tab order must follow the logical structure so keyboard users move through fields in a sensible sequence, and required fields and error messages should be programmatically indicated.
Data tables are the other frequent trouble spot. Header cells must be tagged as TH rather than TD, and each header cell should carry a Scope (Row or Column) so assistive technology can associate every data cell with the right headers. Complex tables with merged or multi-level headers may need explicit Headers/ID associations.
Avoid using tables purely for visual layout; if a table has no real row-and-column relationships, structure the content another way. When a data table is genuine, correct header tagging is what lets a screen reader announce "Revenue, Q3: 1.2 million" instead of a bare, contextless number.
- Tag and label every form field with a descriptive tooltip (TU)
- Set tab order to follow the document structure
- Tag header cells as TH and set Scope to Row or Column
- Use Headers/IDs for complex or multi-level tables
- Never use real data tables for pure visual layout
Key takeaways
- ✓A tagged PDF adds an invisible logical structure tree of headings, lists, tables, and figures that assistive technology relies on to navigate the document.
- ✓Reading order follows the tag sequence, not the visual layout, so a correct-looking page can still be announced in the wrong order.
- ✓PDF/UA (ISO 14289) is the PDF-specific technical standard, while WCAG Level AA and Section 508 are the broader legal benchmarks most organizations must meet.
- ✓Automated checkers like Acrobat Full Check and PAC catch mechanical errors, but only manual review and real screen-reader testing confirm true usability.
- ✓Scanned pages must be OCR'd before tagging, and forms and data tables need labeled fields and properly scoped header cells to be accessible.
Tools for the job
Frequently asked questions
What is the difference between a tagged and an untagged PDF?
An untagged PDF stores only the visual appearance of text and graphics, so assistive technology sees an unstructured stream of characters or, for scans, no text at all. A tagged PDF adds a logical structure tree that labels each element as a heading, paragraph, list, table, or figure. That structure is what lets a screen reader navigate, announce hierarchy, and read content in the correct order.
Does a tagged PDF automatically comply with WCAG or Section 508?
Not automatically. Tagging is necessary but not sufficient. A PDF can be tagged yet still fail because of wrong reading order, missing or meaningless alt text, unlabeled form fields, or poorly structured tables. Full compliance with PDF/UA, WCAG Level AA, or Section 508 requires both correct tags and manual review, ideally confirmed with screen-reader testing.
How do I check whether a PDF is accessible?
Run an automated checker such as Adobe Acrobat Pro's Full Check or the free PDF Accessibility Checker (PAC), which test against PDF/UA and flag missing tags, alt text, and structure problems. Then review reading order and alt text manually, since tools cannot judge meaning. Finally, navigate the document with a screen reader like NVDA, JAWS, or VoiceOver to confirm it is genuinely usable.
Can a scanned PDF be made accessible?
Not until it contains real text. A scan is just an image of a page, so it must be processed with OCR first to produce a selectable, machine-readable text layer. Only then can headings, lists, tables, and reading order be tagged. Skipping OCR leaves a document that a screen reader cannot read at all.
What alternate text should I write for images?
Write a concise description of what the image communicates, not the fact that it is an image. For a chart or diagram, summarize the key finding or data relationship rather than saying "chart." Purely decorative images should be marked as artifacts instead of given alt text, so screen readers skip them and users are not distracted by meaningless announcements.
What is PDF/UA and how does it relate to WCAG?
PDF/UA (ISO 14289) is the technical standard defining exactly how an accessible PDF must be built, including tags, artifacts, and metadata, and it is tested via the Matterhorn Protocol's checkpoints. WCAG is the broader, technology-neutral accessibility standard referenced by most laws. The two overlap heavily, so a document that conforms to PDF/UA satisfies most PDF-relevant WCAG success criteria.
Related terms
Sources and further reading
- PDF techniques for WCAG — W3C Web Accessibility Initiative
- Correct tab and reading order in PDF documents — W3C Web Accessibility Initiative
Browse every PDF term in the full PDF glossary, or head back to the PDFToolz toolkit.