2020-05-10 10:03:14 +00:00
|
|
|
\documentclass[12pt,a4paper,twoside,openright]{report}
|
|
|
|
\let\openright=\cleardoublepage
|
|
|
|
|
|
|
|
\input{metadata}
|
|
|
|
|
|
|
|
\usepackage[a-2u]{pdfx}
|
|
|
|
|
|
|
|
\ifEN\else\usepackage[czech,shorthands=off]{babel}\fi
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
|
|
\usepackage[T1]{fontenc}
|
|
|
|
|
|
|
|
% The geometry modification is recommended by the official template, but
|
|
|
|
% clashes heavily with the existing page design guidelines. Decide for yourself.
|
|
|
|
% (also see https://en.wikipedia.org/wiki/Canons_of_page_construction )
|
|
|
|
%
|
|
|
|
%\usepackage[textwidth=145mm,textheight=247mm]{geometry}
|
|
|
|
|
2020-05-11 19:43:55 +00:00
|
|
|
|
|
|
|
%%% FONTS %%%
|
|
|
|
\usepackage{lmodern} % TeX "original" (this sets up the latin mono)
|
|
|
|
|
|
|
|
% Optionally choose an override for the main font for typesetting
|
2020-05-10 20:35:12 +00:00
|
|
|
\usepackage[mono=false]{libertinus} % popular for comp-sci (ACM uses this)
|
2020-05-10 10:03:14 +00:00
|
|
|
%\usepackage{tgschola} % Schoolbook-like (gives a bit of historic feel)
|
2020-05-11 19:43:55 +00:00
|
|
|
%\usepackage[scale=0.96]{tgpagella} % Palladio-like (popular in formal logic).
|
|
|
|
|
|
|
|
% Optionally choose a custom sans-serif fonts (e.g. for figures and tables).
|
|
|
|
% Default sans-serif font is usually Computer Modern Sans; some font packages
|
|
|
|
% (e.g. libertinus) replace that with a better matching sans-serif font.
|
|
|
|
%\usepackage{tgheros} % recommended and very readable (Helvetica-like)
|
|
|
|
%\usepackage{FiraSans} % looks great
|
|
|
|
% DO NOT typeset the main text in sans-serif font!
|
|
|
|
% Serifs make the text readable.
|
|
|
|
|
|
|
|
% IMPORTANT FONT NOTE: Some font requires additional PDF/A conversion by
|
|
|
|
% pdfa.sh. These include: tgpagella
|
|
|
|
|
2020-05-10 10:03:14 +00:00
|
|
|
|
|
|
|
% some extra packages
|
|
|
|
\usepackage{amsmath,amsfonts,amsthm,bm}
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\usepackage{xcolor}
|
|
|
|
\usepackage{booktabs}
|
|
|
|
\usepackage{float}
|
|
|
|
|
|
|
|
% load bibliography tools
|
|
|
|
\usepackage[backend=bibtex,natbib]{biblatex}
|
|
|
|
\addbibresource{refs}
|
|
|
|
|
|
|
|
% remove this if you won't use fancy verbatim environments
|
|
|
|
\usepackage{fancyvrb}
|
|
|
|
|
|
|
|
% remove this if you won't typeset TikZ graphics
|
|
|
|
\usepackage{tikz}
|
|
|
|
\usetikzlibrary{positioning} %possibly add more libraries, e.g. fit, decorations, ...
|
|
|
|
|
|
|
|
% remove this if you won't typeset any pseudocode
|
|
|
|
\usepackage{algpseudocode}
|
|
|
|
\usepackage{algorithm}
|
|
|
|
|
|
|
|
% remove this if you are not listing code
|
|
|
|
\usepackage{listings}
|
|
|
|
|
|
|
|
\hypersetup{unicode}
|
|
|
|
\hypersetup{breaklinks=true}
|
|
|
|
|
|
|
|
\usepackage[noabbrev]{cleveref}
|
|
|
|
|
|
|
|
\input{todos} % remove this before the final version
|
|
|
|
\input{macros}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
\include{title}
|
|
|
|
|
|
|
|
\tableofcontents
|
|
|
|
|
|
|
|
\include{intro}
|
|
|
|
\include{ch1}
|
|
|
|
\include{ch2}
|
|
|
|
\include{ch3}
|
|
|
|
\include{conclusion}
|
|
|
|
\include{bibliography}
|
|
|
|
|
|
|
|
\appendix
|
|
|
|
\include{howto}
|
|
|
|
%\include{attachments} % include if your attachments are somehow complicated
|
|
|
|
|
|
|
|
\openright
|
|
|
|
\end{document}
|