-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
57 lines (41 loc) · 1.41 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
\documentclass[british]{ntnuthesis} % remove titlepage
\usepackage{todonotes}
\usepackage{siunitx}
\usepackage{hhline}
\usepackage{bm}
\usepackage{multirow}
\usepackage{import}
\DeclareSIUnit{\molar}{M}
\emergencystretch=1em % Avoids overfull bibliography
\title{Generative Adversarial Networks in X-ray Computed Tomography}
% \title{X-ray Computed Tomography Denoising with Generative Adversarial Networks}
\shorttitle{X-ray CT Denoising with GAN}
\author{Trygve Scheline Urdahl}
\shortauthor{T.S. Urdahl}
\date{\today}
\addbibresource{thesis.bib}
% Update glossaries (in terminal):
% pdflatex thesis.tex
% makeglossaries thesis
% pdflatex thesis.tex
\input{glossary.tex} % add glossary and acronym lists before document
\begin{document}
\input{chapters/0a-abstract.tex}
\input{chapters/0b-sammendrag.tex}
\input{chapters/0c-preface.tex}
\tableofcontents
\listoffigures
\listoftables
% \lstlistoflistings % NB: Caused paragraph indents to disappear, changed the .cls file at bottom. Commented out some lines.
\printglossary[type=\acronymtype,nonumberlist,style=super] % Print acronyms. nogroupskip
%\printglossary % Print glossary
\input{chapters/1-introduction.tex}
\input{chapters/2-ct.tex}
\input{chapters/3-machinelearning.tex}
\input{chapters/4-method.tex}
\input{chapters/5-results.tex}
\input{chapters/6-conclusion.tex}
\chapter*{\bibname}
\printbibliography[heading=none]
\appendix
\end{document}