-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs-notes.tex
More file actions
88 lines (73 loc) · 1.66 KB
/
Copy pathcs-notes.tex
File metadata and controls
88 lines (73 loc) · 1.66 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
%! Author = benjamin
% Preamble
\documentclass{memoir}
% Packages
\usepackage{fontspec}
\usepackage[french]{babel}
\usepackage{subfiles}
\usepackage[numberedsection, acronym]{glossaries-extra}
\usepackage[backend=biber]{biblatex}
\usepackage[protrusion=true,expansion]{microtype}
\setmonofont{JetBrainsMono-Regular}[
Path = fonts/jetbrains/,
Extension = .ttf,
BoldFont = JetBrainsMono-Bold,
ItalicFont = JetBrainsMono-Italic,
BoldItalicFont = JetBrainsMono-BoldItalic
]
\setsansfont{IBMPlexSans-Regular}[
Path = fonts/ibm-plex/,
Extension = .ttf,
BoldFont = IBMPlexSans-Bold,
ItalicFont = IBMPlexSans-Italic,
BoldItalicFont = IBMPlexSans-BoldItalic
]
\setmainfont{IBMPlexSerif-Regular}[
Path = fonts/ibm-plex/,
Extension = .ttf,
BoldFont = IBMPlexSerif-Bold,
ItalicFont = IBMPlexSerif-Italic,
BoldItalicFont = IBMPlexSerif-BoldItalic
]
\usepackage[svgnames]{xcolor}
\usepackage{tikz}
\usepackage{hyperref}
\usepackage{minted}
\usepackage{amsmath}
% Settings
\hypersetup{
colorlinks,
breaklinks,
linkcolor=DarkSlateBlue,
citecolor=DarkOrchid,
urlcolor=DarkSlateBlue,
}
\setminted{
breaklines,
fontsize=\tiny,
framesep=2mm,
mathescape,
autogobble,
style=algol_nu,
frame=single,
rulecolor=gray,
tabsize=2
}
\makeglossaries
\input{common/acronym.tex}
% Document data
\title{Computer Science}
\author{Benjamin Boboul}
\date{\today}
% Document
\begin{document}
\frontmatter
\maketitle
\mainmatter
\subfile{notes/machine-learning/machine-learning.tex}
\backmatter
\tableofcontents
\listoffigures
\listoftables
\printglossaries
\end{document}