Add outline and first page of content for thesis

This commit is contained in:
2026-03-21 18:57:32 +01:00
parent d8ca717021
commit 361e572a1b
8 changed files with 1862 additions and 0 deletions

66
src/thesis/main.tex Normal file
View File

@@ -0,0 +1,66 @@
\documentclass[dvipsnames]{report}
\usepackage[a4paper,left=3cm,right=3cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{mleftright}
\usepackage{bm}
\usepackage{tikz}
\usepackage{xcolor}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{acro}
\usepackage{braket}
\usepackage[
backend=biber,
style=ieee,
sorting=nty,
]{biblatex}
\usepackage{todonotes}
\usetikzlibrary{calc, positioning, arrows}
%
%
% Custom commands
%
%
\newcommand{\red}[1]{\textcolor{red}{#1}}
%
%
% Acronyms
%
%
\input{acronyms.tex}
\addbibresource{src/thesis/MA.bib}
%
%
% Content
%
%
\title{Fault Tolerant Quantum Error Correction}
% \subtitle{Master's Thesis}
\author{Andreas Tsouchlos}
\begin{document}
\maketitle
\tableofcontents
\newpage
\input{chapters/1_introduction.tex}
\input{chapters/2_fundamentals.tex}
\input{chapters/3_fault_tolerant_qec.tex}
\input{chapters/4_decoding_under_dems.tex}
\input{chapters/5_conclusion_and_outlook.tex}
\printbibliography
\end{document}