This commit is contained in:
Jean-Marie Mineau 2025-06-12 11:51:21 +02:00
parent a1a6d7cff8
commit 1b5d007289
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
5 changed files with 43 additions and 6 deletions

20
lib/general.typ Normal file
View file

@ -0,0 +1,20 @@
// ------------ SYMBOLS/ABBREVIATIONS ------------
#let ie = [_i.e._,]
#let eg = [_e.g._,]
#let etc = [_etc._]
#let etal = [_et al._]
// ------------ FORMATING ------------
#let paragraph(title) = [#title #h(1em)]
#let epigraph(attribution, body) = align(right, box(width: 50%)[
#set align(left)
#quote(
block: true,
attribution: attribution,
body
)
])