Abbreviations let you define short forms (e.g., “API”) and their full text (e.g., “Application Programming Interface”). They can be automatically collected into a List of Abbreviations in your document.Documentation Index
Fetch the complete documentation index at: https://docs.autype.com/llms.txt
Use this file to discover all available pages before exploring further.
Defining abbreviations
The top-levelabbreviations object is a key-value map where each key is the short form and the value is the full text.
Key format
Abbreviation keys (short forms) must:- Start with a letter (including Unicode letters like
Ä,ö,Ü) - Contain only letters, digits, spaces, and the characters
& _ - . , ( ) / ' " - Be 1–20 characters long
Value format
| Property | Type | Constraints |
|---|---|---|
| (value) | string | Full text of the abbreviation. 1–200 characters. |
Using abbreviations in sections
To mark an abbreviation in your text content, wrap the abbreviation key with tildes:~ABK~. The abbreviation must be defined in the top-level abbreviations object.
~API~ will display the abbreviation with a tooltip or annotation showing the full text “Application Programming Interface” (depending on the output format).
The
~ABK~ syntax works in all text content within sections: headings, paragraphs (text, text2), list items, and table cells.List of Abbreviations element
To render an automatic list of all defined abbreviations, add alistOfAbbreviations element to a section:
Properties
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | Yes | — | Must be "listOfAbbreviations" |
id | string | No | — | Optional unique identifier. Max: 100 chars. |
title | string | No | — | Title displayed above the list (e.g., "List of Abbreviations"). Max: 200 chars. |
sortOrder | string | No | "alphabetical" | Sort order: "alphabetical" (by abbreviation key) or "document" (order of first appearance in document). |
fontFamily | string | No | — | Font family for the title. Max: 100 chars. |
fontSize | number | No | — | Font size for the title in pt (6–72). |
spacing | object | No | — | Spacing override with before and after in pt (0–100). |
Defaults for abbreviations
You can customize the appearance of the abbreviation list globally viadefaults.styles.listOfAbbreviations:
List of Abbreviations style properties
| Property | Type | Default | Description |
|---|---|---|---|
fontFamily | string | — | Font family for list entries. Max: 100 chars. |
fontSize | number | — | Font size in pt (6–72). |
fontWeight | string | — | Font weight: "normal" or "bold" |
color | string | — | Text color in hex format (#RGB or #RRGGBB). |
sortOrder | string | "alphabetical" | Default sort order: "alphabetical" or "appearance" (order of first use). |
separator | string | " - " | Separator between abbreviation and full text (e.g., " - ", ": ", " = "). Max: 10 chars. |
