update epigraph
[phd-thesis.git] / preamble.tex
1 \usepackage[
2 inner=25mm,
3 outer=20mm,
4 marginparsep=3mm,
5 marginparwidth=13mm,
6 top=25mm,
7 bottom=20mm,
8 paperwidth=17cm,
9 paperheight=24cm]{geometry} % Papersize
10 \usepackage[british]{babel} % Internationalization
11 \usepackage[titletoc]{appendix} % Appendices
12 \usepackage[pagebackref,hidelinks]{hyperref} % Hyperlinks
13 \usepackage{graphicx} % Graphics
14 \usepackage{booktabs} % Better looking tables
15 \usepackage{etoolbox} % Patch chapter command
16 \usepackage[nodayofweek]{datetime} % Use a fixed document date
17 \usepackage{listings} % Code
18 \usepackage[acronym,nonumberlist]{glossaries} % Glossaries and acronyms
19 \usepackage[algochapter]{algorithm2e} % Pseudocode
20 \usepackage{makeidx} % Index
21 \usepackage[inline,shortlabels]{enumitem} % Customized enumerations
22 \setlist{noitemsep}
23 \setlist[description]{leftmargin=\parindent}
24 \usepackage{epigraph}
25
26 % Have better page numbering in chapters
27 \patchcmd{\chapter}{plain}{headings}{}{}
28
29 % Images directory
30 \graphicspath{{img/}}
31
32 % Fix list of listings title
33 \renewcommand{\lstlistlistingname}{List of Listings}
34
35 % Fix list of listings chapter separator
36 \makeatletter
37 \let\my@chapter\@chapter%
38 \renewcommand*{\@chapter}{%
39 \addtocontents{lol}{\protect\addvspace{10pt}}%
40 \my@chapter}
41 \makeatother
42
43 % Setup pdf parameters
44 \hypersetup{%
45 pdftitle={},
46 pdfauthor={},
47 pdfsubject={},
48 pdfcreator={},
49 pdfproducer={},
50 pdfkeywords={},
51 }
52
53 % Fix gls in hyperlink errors
54 \pdfstringdefDisableCommands{%
55 \def\acrlong#1{}%
56 \def\acrlongpl#1{}%
57 \def\acrshort#1{}%
58 \def\acrshortpl#1{}%
59 \def\acrfull#1{}%
60 \def\acrfullpl#1{}%
61 \def\Acrlong#1{}%
62 \def\Acrlongpl#1{}%
63 \def\Acrshort#1{}%
64 \def\Acrshortpl#1{}%
65 \def\Acrfull#1{}%
66 \def\Acrfullpl#1{}%
67 \def\gls#1{}%
68 \def\glspl#1{}%
69 \def\Gls#1{}%
70 \def\Glspl#1{}%
71 }
72
73 % General listings settings
74 \lstset{%
75 breakatwhitespace=false,
76 breaklines=true,
77 captionpos=b,
78 keepspaces=true,
79 basicstyle=\ttfamily\fontseries{l}\footnotesize,
80 commentstyle=\slshape\fontseries{m},
81 keywordstyle=\bfseries\fontseries{b},
82 stringstyle=\ttfamily,
83 showspaces=false,
84 showstringspaces=false,
85 showtabs=false,
86 tabsize=4,
87 frame=L,
88 }
89
90 % Increase the depth for the table of contenst
91 \setcounter{secnumdepth}{3}
92
93 % Fix the algorithm font
94 \renewcommand\AlCapFnt{\normalfont}
95
96 % Initialize the glossaries
97 \makeglossaries%
98 \input{glossaries}
99
100 % Enable the index
101 \makeindex%