16 lines
508 B
Typst
16 lines
508 B
Typst
#import "@preview/acrostiche:0.7.0": *
|
|
|
|
#let acronyms = (
|
|
"TaPL": ([Types and Progamming Languages@tapl],),
|
|
"LSP": (link("https://en.wikipedia.org/wiki/Liskov_substitution_principle")[Liskov substitution principle],),
|
|
"AST": ([Abstract Syntax Tree],),
|
|
"LUB": ([Least Upper Bound],),
|
|
"CLI": ([Command-Line Interface],),
|
|
"CSV": ([Comma-Separated Values],),
|
|
"GLSL": ([OpenGL Shading Language],),
|
|
)
|
|
|
|
#init-acronyms(acronyms)
|
|
|
|
// Don't think this needs a long form on first use
|
|
#mark-acr-used("CSV") |