/acronyms

Adds support for Acronyms, and List of Acronyms, to Quarto documents.

Primary LanguageLuaGNU General Public License v3.0GPL-3.0

Acronyms: List of Acronyms support for Quarto documents

Author: rchaput rchaput.pro@gmail.com

GitHub License GitHub release (latest SemVer) GitHub Release Date

Description

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.

Features

  • 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.

Installation

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.

Usage

Using this package requires 2 simple steps:

  1. Define your acronyms in the YAML metadata.
---
acronyms:
  keys:
    - shortname: qmd
      longname: Quarto documents
    - shortname: YAML
      longname: YAML Ain't Markup Language
---
  1. 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.

Credits

This package was inspired from: