|
|
|
% Packages used
|
|
|
|
|
|
|
|
% Used for flexibility, so other types of documents can have their own preambles (e.g. presentations)
|
|
|
|
\usepackage[subpreambles=true]{standalone}
|
|
|
|
|
|
|
|
% Used for all the files inside thesis directory
|
|
|
|
\usepackage{subfiles} %TODO: possibly unused (remove?)
|
|
|
|
|
|
|
|
% Paper size and margins
|
|
|
|
\usepackage{geometry}
|
|
|
|
|
|
|
|
% --- Languages & Fonts ---
|
|
|
|
\usepackage{languages-fonts}
|
|
|
|
|
|
|
|
% --- Styling ---
|
|
|
|
\usepackage{hyperref} % Extensive support for hypertext
|
|
|
|
\usepackage{authblk} % Support for footnote style author/affiliation
|
|
|
|
\usepackage{enumitem} % For item lists
|
|
|
|
\usepackage{greek-enumerate} % Greek enumeration for ordered item lists
|
|
|
|
\usepackage{float} % For \begin{figure}[H]
|
|
|
|
\usepackage[font={footnotesize, it}]{caption} % For captions under figures
|
|
|
|
\usepackage{csquotes} %TODO: unused atm (remove?)
|
|
|
|
\usepackage{minted} % Source code highlighting (make sure to add -shell-escape flag!)
|
|
|
|
\usepackage{tcolorbox} % Colored boxes
|
|
|
|
\tcbuselibrary{minted} % Make tcolorbox work with minted
|
|
|
|
|
|
|
|
% --- Bibliography ---
|
|
|
|
\usepackage[backend=bibtex, sorting=none]{biblatex}
|
|
|
|
|
|
|
|
% --- Custom commands ---
|
|
|
|
\input{custom-commands/custom-title-page}
|
|
|
|
\input{custom-commands/custom-lists}
|
|
|
|
\input{custom-commands/custom-listings}
|
|
|
|
|