I’m using abbr 0.2.3 to manage my abbreviations. In the package info there is list (title)
written. I thought I could add a title with that but it doesn’t allow anything within the brackets. The package creates a heading but I want to set my own. How can I do that?
#import "@preview/abbr:0.2.3"
#abbr.list(title: [Custom title])
// alternative: #abbr.load("example.csv")
#abbr.make(
("PDE", "Partial Differential Equation"),
("BC", "Boundary Condition"),
("DOF", "Degree of Freedom", "Degrees of Freedom"),
)
= Constrained Equations
#abbr.pla[BC] constrain the #abbr.pla[DOF] of the #abbr.pla[PDE] they act on.
#abbr.config(style: it => text(red, it), space-char: sym.arrow.l.r)
#abbr.pla[BC] constrain the #abbr.pla[DOF] of the #abbr.pla[PDE] they act on.
#abbr.add("MOL", "Method of Lines")
The #abbr.a[MOL] is a procedure to solve #abbr.pla[PDE] in time.
2 Likes