aboutsummaryrefslogtreecommitdiff
path: root/projdoc.cls
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-09 14:49:23 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-09 14:49:23 +0200
commiteecaf177ea63fe1da21644427f1388428744205d (patch)
tree590a312c2a090755e24331f4d2e88d6f7ab3007a /projdoc.cls
parentf769fb30261c3091b958b62696e3c5ef3df39130 (diff)
add glossary + format LaTeX code
Diffstat (limited to 'projdoc.cls')
-rw-r--r--projdoc.cls42
1 files changed, 31 insertions, 11 deletions
diff --git a/projdoc.cls b/projdoc.cls
index c6abaca..503f049 100644
--- a/projdoc.cls
+++ b/projdoc.cls
@@ -14,6 +14,18 @@
\PassOptionsToPackage{nosort}{cleveref}
\PassOptionsToPackage{nameinlink}{cleveref}
\PassOptionsToPackage{obeyspaces}{url}
+\PassOptionsToPackage{toc=false}{glossaries}
+\PassOptionsToPackage{record}{glossaries-extra}
+\PassOptionsToPackage{
+ backend=biber,
+ bibencoding=utf8,
+ style=iso-numeric,
+ % Technically, Avans University of Applied Sciences requires that we always use APA
+ % style references, but this often results in ugly citations when working with
+ % technical or online resources. At the end of the day, the bibliography is there
+ % to prove we didn't plagiarize or make shit up, so ISO 690 is *probably* fine.
+ autocite=plain,
+}{biblatex}
% frequently used packages
\RequirePackage{geometry}
@@ -38,9 +50,13 @@
\RequirePackage{cleveref}
\RequirePackage{adjustbox}
\RequirePackage{xparse}
+\RequirePackage{biblatex}
+\RequirePackage{glossaries}
+\RequirePackage{glossaries-extra}
\RequirePackage{ifdraft}
\RequirePackage{enumitem}
\RequirePackage{subcaption}
+\RequirePackage{multicol}
% font style
\setmainfont{TeX Gyre Schola}
@@ -171,18 +187,14 @@
\makeatother
% bibliography
-\usepackage[
- backend=biber,
- bibencoding=utf8,
- style=iso-numeric,
- % Technically, Avans University of Applied Sciences requires that we always use APA
- % style references, but this often results in ugly citations when working with
- % technical or online resources. At the end of the day, the bibliography is there
- % to prove we didn't plagiarize or make shit up, so ISO 690 is *probably* fine.
- autocite=plain,
-]{biblatex}
\addbibresource{sources.bib}
+% glossary
+\GlsXtrLoadResources[
+ src={./glossary.bib},
+ selection={recorded and deps and see},
+]
+
% default document header/trailer
\makeatletter
\def\projdoc@header{
@@ -196,8 +208,16 @@
\newbool{projdoc@cited}
\apptocmd{\abx@aux@cite}{\global\booltrue{projdoc@cited}}{}{}
\def\projdoc@trailer{
- % end with bibliography (if citations used)
+ % bibliography (if citations used)
\ifbool{projdoc@cited}{\printbibliography}{}%
+ % glossary
+ \ifcsundef{printunsrtglossary}{}{%
+ \section*{Glossary}%
+ \begin{multicols}{2}%
+ \renewcommand{\glossarysection}[2][]{}%
+ \printunsrtglossary%
+ \end{multicols}%
+ }%
}
\AtBeginDocument{\projdoc@header}
\AtEndDocument{\projdoc@trailer}