-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglossary.tex
60 lines (56 loc) · 1.48 KB
/
glossary.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
%!TEX root = thesis.tex
\makeglossaries
% Glossary - stuff the reader should know
% 1. \gls{ha} -> "HAZOP"
% 2. \gls{ha} -> "HAZOP"
\newglossaryentry{api}{
name=API,
description={Application Programming Interface},
plural=APIs, % Optional
descriptionplural={Application Programming Interfaces} % Optional
}
\newglossaryentry{oop}{
name=OOP,
description={Object Oriented Programing},
}
\newglossaryentry{css}{
name=CSS,
description={Cascading Style Sheet},
plural=CSS,
descriptionplural={Cascading Style Sheets}
}
\newglossaryentry{json}{
name=JSON,
description={JavaScript Object Notation},
}
\newglossaryentry{gui}{
name=GUI,
description={Graphical User Interface},
plural=GUIs,
descriptionplural={Graphical User Interfaces}
}
\newglossaryentry{jvm}{
name=JVM,
description={Java Virtual Machine},
}
% Acronym - stuff the read probably doesn't know
% 1. \ac{ito} -> "Internet of Things (IoT)"
% 2. \ac{ito} -> "IoT"
\newglossaryentry{skill}{
name=SKilL,
description={Serialization Killer Language},
first={\glsentrydesc{skill} (\glsentrytext{skill})},
}
\newglossaryentry{ir}{
name=IR,
description={Intermediate Representation},
first={\glsentrydesc{ir} (\glsentrytext{ir})},
}
\newglossaryentry{ecs}{
name=ECS,
description={Entity Component System},
first={\glsentrydesc{ecs} (\glsentrytext{ecs})},
plural=ECSs, % optional
descriptionplural={\glsentrydesc{ecs}s}, % optional
firstplural={\glsentrydescplural{ecs} (\glsentryplural{ecs})} % optional
}