-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
60 lines (43 loc) · 1.47 KB
/
main.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
60
\documentclass{report}
\usepackage{csquotes}
\usepackage{enumitem}
\usepackage[a4paper, top=2cm, bottom=2cm, outer=2cm, inner=3cm, includeheadfoot]{geometry}
\usepackage{graphicx}
\usepackage{minted}
\usepackage{subcaption}
\usepackage{hyperref}
\usepackage[english]{babel}
\selectlanguage{english}
% to change Table of Contents name
% \addto\captionsenglish{
% \renewcommand{\contentsname}
% {Index}
% }
\usepackage[xindy]{glossaries}
\renewcommand{\glstextformat}[1]{\textcolor{blue}{#1}}
\input{chapters/glossary}
\makenoidxglossaries
\usepackage[backend=bibtex, style=numeric, sorting=ynt]{biblatex}
\addbibresource{chapters/bibliography.bib}
\usepackage{fontspec}
\setmainfont{Times New Roman}
\usepackage{setspace}
\onehalfspacing
\sloppy
\title{Cardano \& Ouroboros (easy peazy) Summary}
\author{Harmonic Laboratories}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\begin{document}
\pagenumbering{gobble} % switchs off page numbering
\input{chapters/cover} % shows front cover
\tableofcontents % shows chapters index
\clearpage % idk but without this page numbering breaks
\pagenumbering{arabic} % turns on page numbering (and sets it to arabic numbers)
\input{chapters/chapter1.tex}
\input{chapters/chapter2.tex}
\printnoidxglossaries % shows glossary
\pagenumbering{gobble} % makes page numbers disappear since glossary page
\nocite{*}
\printbibliography % shows bibliography
\end{document}