Universe

Term List as a Table

The term list is the following syntax in typst:

Input

Document Result

/ term: description

term    description

This package allows laying out the term list as a regular table. By default, the terms form the first column and the descriptions are in the second column, but it can also be transposed. As an extension, additional columns can be added.

Example

Input

Document Result

#import "@preview/tabbyterms:0.1.0" as tabbyterms: terms-table

#show: tabbyterms.style.default-styles
#terms-table[
  / Package: PACKAGENAME
  / Technology: Typst
  / Subject: General, Mathematics, Linguistics
  / Category: Layout, Components
]

Package

PACKAGENAME

Technology

Typst

Subject

General, Mathematics, Linguistics

Category

Layout, Components

As an extension, additional columns can be added by using lists in the description:

Input

Document Result

#import "@preview/tabbyterms:0.1.0" as tabbyterms: terms-table

#show: tabbyterms.style.default-styles
#terms-table[
  / Term: - Explanation
          - Assumptions
  / X: - Explanatory variables
       - Non-random
  / Y: - Y1, ..., Yn observations
       - Pairwise independent
  / β: - Model parameters
       - Non-random
]

Term

Explanation

Assumptions

X

Explanatory variables

Non-random

Y

Y1, …, Yn observations

Pairwise independent

β

Model parameters

Non-random

Function Documentation and Manual

Please see the manual for more explanations, examples and function documentation.

License

The package is distributed under the terms of the European Union Public License v1.2 or any later version, which is an OSI-approved weakly copyleft license. The License is distributed with the package.

😼