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