Author: rchaput rchaput.pro@gmail.com
This Quarto extension adds the ability to automatically handle acronyms inside Quarto (qmd) documents.
Throughout the document, acronyms are replaced by either their short name, or their long name, depending on whether they appear for the first time. They also may be linked to their corresponding definition in an automatically generated List of Acronyms, so that readers can access the definition in one click.
It is based on the previous Acronymsdown package, which provided the same features, but for RMarkdown documents.
- Tired of manually having to check whether the first occurrence of an acronym is correctly explained to your readers? acronyms automatically replaces acronyms, based on whether they appear for the first time.
- Generate a List of Acronyms based on your defined acronyms.
- The place where this list will be generated can be specified (by default, at the beginning of the document).
- Automatic sorting of this list.
- You can choose between the alphabetical, usage or initial order.
- Easily manage acronyms
- Choose between multiple styles to replace acronyms.
- By default, 1st occurrence is replaced by long name (short name), and following occurrences are simply replaced by short name.
- All occurrences can also be linked to the acronym's definition in the List of Acronyms.
- Define acronyms directly in your document or in external files.
- Extensive configuration
- Most of this package's mechanisms can be configured: how to handle duplicate keys, whether to raise an error, print a warning or ignore an non-existing key, how to sort, ...
- Sane defaults are included, such that this package can be used out-of-the-box.
In a terminal, in the same directory as your Quarto document (or project), enter the following command:
quarto add rchaput/acronyms
This will automatically install the latest version from GitHub into your
_extensions/
folder.
Then, in your Quarto document (or project configuration), add the following
lines to your YAML metadata:
---
filters:
- acronyms
---
If you already have a filters:
block, simply add the - acronyms
line at
the end of the list.
Using this package requires 2 simple steps:
- Define your acronyms in the YAML metadata.
---
acronyms:
keys:
- shortname: qmd
longname: Quarto documents
- shortname: YAML
longname: YAML Ain't Markup Language
---
- Use your acronyms in your qmd document with the
\acr{<KEY>}
special command!
\acr{qmd} can be used to write technical content. \acr{qmd} use \acr{YAML}.
which renders as (using default options):
Quarto documents can be used to write technical content. qmd use YAML Ain't Markup Language.
This package was inspired from:
- an issue on bookdown ;
- a lua filter to sort a definition list ;
- the pagedown's insertion of a List of Figures/Tables ;
- the pandoc-abbreviations filter ;
- the LaTeX glossaries package.