Path: blob/main/src/resources/schema/document-pdfa.yml
12925 views
- name: pdfa1schema:2anyOf:3- boolean4- string5tags:6formats: [context]7description:8short: Adds the necessary setup to the document preamble to generate PDF/A of the type specified.9long: |10Adds the necessary setup to the document preamble to generate PDF/A of the type specified.1112If the value is set to `true`, `1b:2005` will be used as default.1314To successfully generate PDF/A the required15ICC color profiles have to be available and the content and all16included files (such as images) have to be standard conforming.17The ICC profiles and output intent may be specified using the18variables `pdfaiccprofile` and `pdfaintent`. See also [ConTeXt19PDFA](https://wiki.contextgarden.net/PDF/A) for more details.2021- name: pdfaiccprofile22schema:23maybeArrayOf: string24tags:25formats: [context]26description:27short: |28When used in conjunction with `pdfa`, specifies the ICC profile to use29in the PDF, e.g. `default.cmyk`.30long: |31When used in conjunction with `pdfa`, specifies the ICC profile to use32in the PDF, e.g. `default.cmyk`.3334If left unspecified, `sRGB.icc` is used as default. May be repeated to35include multiple profiles. Note that the profiles have to be available36on the system. They can be obtained from37[ConTeXt ICC Profiles](https://wiki.contextgarden.net/PDFX#ICC_profiles).3839- name: pdfaintent40schema: string41tags:42formats: [context]43description:44short: When used in conjunction with `pdfa`, specifies the output intent for the colors.45long: |46When used in conjunction with `pdfa`, specifies the output intent for47the colors, for example `ISO coated v2 300\letterpercent\space (ECI)`4849If left unspecified, `sRGB IEC61966-2.1` is used as default.5051- name: pdf-standard52schema:53maybeArrayOf:54enum:55# PDF versions56- "1.4"57- "1.5"58- "1.6"59- "1.7"60- "2.0"61# PDF/A standards (supported by both Typst and LaTeX)62- a-1b63- a-2a64- a-2b65- a-2u66- a-3a67- a-3b68- a-3u69- a-470- a-4f71# PDF/A standards (Typst only)72- a-1a73- a-4e74# PDF/UA standards75- ua-176- ua-277# PDF/X standards (LaTeX only)78- x-479- x-4p80- x-5g81- x-5n82- x-5pg83- x-684- x-6n85- x-6p86tags:87formats: [$pdf-all, typst]88description:89short: PDF conformance standard (e.g., ua-2, a-2b, 1.7)90long: |91Specifies PDF conformance standards and/or version for the output.9293Accepts a single value or array of values:9495**PDF versions** (both Typst and LaTeX):96`1.4`, `1.5`, `1.6`, `1.7`, `2.0`9798**PDF/A standards** (both engines):99`a-1b`, `a-2a`, `a-2b`, `a-2u`, `a-3a`, `a-3b`, `a-3u`, `a-4`, `a-4f`100101**PDF/A standards** (Typst only):102`a-1a`, `a-4e`103104**PDF/UA standards**:105`ua-1` (Typst), `ua-2` (LaTeX)106107**PDF/X standards** (LaTeX only):108`x-4`, `x-4p`, `x-5g`, `x-5n`, `x-5pg`, `x-6`, `x-6n`, `x-6p`109110Example: `pdf-standard: [a-2b, ua-2]` for accessible archival PDF.111112113