Master-Thesis/main.tex
2021-06-25 06:22:43 +02:00

143 lines
3.5 KiB
TeX

\documentclass[a4paper,11pt]{article}
\usepackage{graphicx}
\usepackage[font=normal,textfont=it]{caption}
\DeclareCaptionType{Code} %Preparation for eventual code numbering
\renewcommand{\theCode}{\arabic{Code}}
\usepackage{subcaption}
%\usepackage[numbers]{natbib}
\usepackage{url}
\usepackage{array}
\usepackage{makecell}
\usepackage{comment}
%\usepackage{fixltx2e}
%% Language and font encodings
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{libertinus} % Use font of arbitrary sizes
% (removes bibliography font warning)
\usepackage{csquotes} % Removes a compilation warning
\usepackage{changepage}
\usepackage{lipsum}
\usepackage[acronym]{glossaries}
\makenoidxglossaries
\loadglsentries[acronym]{glossaries.tex}
%SI Package
\usepackage[binary-units=true]{siunitx}
%\sisetup{group-separator = \text{\,}}
%\sisetup{group-minimum-digits = {4}}
%footnote
\usepackage[bottom]{footmisc}
%% Sets page size and margins
\usepackage[a4paper,top=2cm,bottom=2cm,left=2cm,right=2cm,marginparwidth=1.75cm]{geometry}
%% Useful packages
\usepackage{amsmath}
\DeclareMathOperator{\E}{\mathbb{E}}
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{textcomp} %defines \perthousand and \micro for gensymb
\usepackage{gensymb} %math in text
\usepackage[unicode=true,pdfusetitle,
bookmarks=true,
bookmarksnumbered=false,
bookmarksopen=false,
breaklinks=false,
pdfborder={0 0 1},
backref=false,
colorlinks=false]{hyperref}
%\usepackage[colorinlistoftodos]{todonotes}
%\usepackage[colorlinks=true, allcolors=black]{hyperref}
%packages for hyperlinperlin
%\usepackage{hyperref}
%\hypersetup{pdftex,colorlinks=false,allcolors=black}
%\usepackage{hypcap}
%Bibliography
\usepackage[sorting=none]{biblatex}
\addbibresource{references.bib}
\usepackage{chngcntr}
%\counterwithin{figure}{section}
\counterwithin{table}{section}
%\usepackage[table,xcdraw]{xcolor}
\usepackage{amssymb}
\usepackage{float}
\usepackage{adjustbox}
\usepackage{textgreek}
\usepackage{multirow}
\usepackage{color}
\usepackage[table,xcdraw,dvipsnames]{xcolor}
\usepackage{wrapfig}
\usepackage[final]{pdfpages}
\usepackage{listings}
\lstset{
basicstyle=\ttfamily,
columns=fullflexible,
}
\renewcommand{\familydefault}{\sfdefault}
\title{Multi-seasonal performance of Gaussian Process models for building
temperature control}
\author{Radu C. Martin}
%header
%\usepackage[headsep=0.5cm,margin=1.5cm,bottom=2cm,headheight=5pt,includeheadfoot]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\setlength\headheight{35pt}
\fancyhf{Multi-season GP performance for buildings}
\rhead{\includegraphics[width=2cm]{Logo-EPFL.png}}
\lhead{}
\cfoot{\thepage}
\usepackage[framed,numbered,autolinebreaks,useliterate]{mcode}
\setlength{\parskip}{0.5em}
\setlength\parindent{0pt}
% Define new user commands
\newcommand{\pdome}{Polyd\^ome}
\newcommand{\model}[3]{$\mathcal{M}$($l_w = #1$, $l_u = #2$, $l_y = #3$)}
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert}
\begin{document}
\selectlanguage{english}
\input{00_First_Page.tex}
\tableofcontents
\clearpage
\printnoidxglossary[type=\acronymtype]
\clearpage
\input{10_Introduction.tex}
\input{20_Previous_Research.tex}
\input{30_Gaussian_Processes_Background.tex}
\input{40_CARNOT_model.tex}
\input{50_Choice_of_Hyperparameters.tex}
\input{60_The_MPC_Problem.tex}
\input{70_Implementation.tex}
\input{80_Results.tex}
\input{90_Further_Research.tex}
\input{95_Conclusion.tex}
\printbibliography
\appendix
\input{99A_GP_hyperparameters_validation.tex}
\input{99C_hyperparameters_results.tex}
\end{document}