惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
月光博客
月光博客
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
有赞技术团队
有赞技术团队
V
V2EX
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
腾讯CDC
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Accessibility law and your PDFs: creating PDF/UA with Oicana
Niklas Eicker · 2026-06-17 · via DEV Community

Accessibility reaches a lot further than websites. It includes the PDFs you generate for your customers. Invoices, statements, contracts, tickets, and reports are part of the service you offer, and services have to be accessible.

This post looks at what the European Accessibility Act and the US accessibility framework (ADA and Section 508) mean for businesses that produce PDFs, whether PDF/UA is actually required, and how Oicana exports PDF/UA-1 documents from Typst templates.

This is an engineering overview, not legal advice. Whether and how these rules apply to your organization depends on your jurisdiction, size, and what you sell. Talk to qualified counsel before making compliance decisions.

What the laws require

European Accessibility Act (EAA)

The European Accessibility Act (Directive (EU) 2019/882) became enforceable on 28 June 2025. It requires a broad set of products and services sold in the EU to be accessible to people with disabilities. It includes services like e-commerce, consumer banking, e-books, transport, or telecoms and applies regardless of where your company is based. If you sell into the EU market, you are in scope. Any customer facing PDFs that you generate are part of your service and need to be accessible.

Two important nuances:

  • Microenterprise exemption (services): organizations with fewer than 10 employees and annual turnover below €2 million are generally exempt for the services parts of the EAA.
  • A transition window: new products and services have to comply from 28 June 2025. Many existing ones have until 28 June 2030.

Penalties are set by each member state and can be severe. There can be fines, and in some jurisdictions removal of a product or service from the market.

How the EAA defines "accessible"

The EAA itself contains no checklist. It points at the harmonized European standard EN 301 549, which in turn incorporates the Web Content Accessibility Guidelines (WCAG) 2.1 Level AA as the technical benchmark for digital content. So in practice, "accessible" means "meets WCAG 2.1 AA". That applies to document content and to web pages.

United States: ADA and Section 508

Across both continents: WCAG is the legal benchmark and a PDF has to carry the structure a screen reader needs in order to satisfy it.

Is PDF/UA a requirement?

Short answer: not literally, but it is the recognized way to get there for PDFs.

PDF/UA ("Universal Accessibility", ISO 14289) is the technical standard that defines how an accessible PDF must be built: a complete tag tree, a logical reading order, alternative text for images and formulas, a declared document language and title, and so on. The law mandates the outcome (WCAG conformance), and PDF/UA is the established, testable specification for achieving that outcome in the PDF format.

In other words:

The EAA / EN 301 549 do not name PDF/UA as mandatory. They require WCAG 2.1 AA. PDF/UA is how the PDF industry implements those requirements. A PDF/UA-conformant file carries exactly the tagging, metadata, and structure that WCAG asks for. Pairing PDF/UA conformance with WCAG is widely seen as the safest, most future-proof approach for any organization producing PDFs at scale.

So if you generate PDFs and want a clear, verifiable target, "produce PDF/UA" is the practical goal.

Why generated PDFs are the hard part

A handful of brochures can be remediated by hand in Acrobat. But the documents that put a business in scope are usually the generated ones: thousands of invoices a day, per-customer statements, contracts assembled from data. You cannot manually tag those after the fact. Accessibility has to be produced at generation time, by the template and the engine, consistently, on every document.

This is where a lot of PDF tooling struggles. Headless-browser HTML-to-PDF pipelines produce weak or no tag trees; many imperative PDF libraries leave tagging entirely to you. Getting reliable, valid tags out of them is a project in itself.

How Oicana and Typst help

Oicana compiles Typst templates to PDF, and Typst's PDF export was built with accessibility in mind. Two things matter here:

1. Tagged PDFs by default. Oicana produces tagged (accessible) PDFs out of the box. The tag tree is the foundation everything else builds on. The semantic markup you already write in Typst (= Heading, lists, figure, tables) maps to the corresponding PDF structure elements automatically, so a well-structured template yields a well-structured document.

2. One-line PDF/UA-1 export. You opt into PDF/UA-1 directly in the template manifest:

[tool.oicana.export.pdf]
standards = ["ua-1"]

That is all the integration code needs to know. The same Typst template exports a PDF/UA-1 file whether you compile it from Node.js, Python, Java, Rust, C#, PHP, or the browser. (Oicana's default standard is PDF/A-3b; PDF/A profiles such as a-2a/a-3a are also tagged and accessibility-oriented if you need PDF/A instead.)

What you still have to provide

PDF/UA is a contract, and Typst holds you to it. Producing a valid PDF/UA-1 file requires real accessibility metadata in the template, and if something is missing, the compile fails with a clear error rather than silently shipping a broken file. At minimum you need:

  • a document title and a document language,
  • alternative text on every image and formula,
  • genuine semantic structure (headings, lists, tables) instead of visual fakes,
  • decorative elements marked as artifacts so screen readers skip them.

In an Oicana template that looks like this:

#import "@preview/oicana:0.2.0": setup

#let read-project-file(path) = read(path, encoding: none)
#let (input, oicana-image, _) = setup(read-project-file)

// Required for PDF/UA-1: a title and a language
#set document(title: "Invoice " + input.invoice.number)
#set text(lang: "en")

= Invoice #input.invoice.number

// Images need alternative text
#figure(
  oicana-image("logo", alt: "Acme Corporation logo"),
)

Billed to #input.invoice.customer

Exporting PDF/UA-1 gives you a document that is structurally accessible and machine-checkable, which is a large, hard part of the job. It does not, on its own, guarantee WCAG 2.1 AA or legal compliance: the content still has to be right (meaningful alt text, sufficient color contrast, sensible reading order, accessible tables). Validate your output with a tool like the free [PAC (PDF Accessibility Checker)][pac] and review it with real assistive technology.

Why the template-based approach fits compliance work

  • Accessibility lives in the template, not scattered across application code. Flip one manifest setting and every document your service emits is PDF/UA-1, across all integrations and tech stacks.
  • Templates are plain text in version control. Accessibility requirements, alt-text conventions, and the standard you target are reviewable and diffable like any other code.
  • Failures are loud. A missing title or alt text breaks the build, so a regression cannot quietly ship a non-conformant invoice to a customer.
  • Built on open source. Typst's compiler and its PDF export are open source, so your accessible-document pipeline isn't locked to a single vendor.

Getting started

If accessibility is on your roadmap, generating PDF/UA documents from data is one of the trickier pieces to get right. Oicana makes it a manifest setting on top of a templating system you can read, review, version, and use from many different tech stacks.

Get started with Oicana