-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
117 lines (92 loc) · 3.25 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
%% ----------------------------------------------------------------------------
% CVG SA/MA thesis template
%
% Created 03/08/2024 by Tobias Fischer
%% ----------------------------------------------------------------------------
\documentclass[pdftex,11pt,openright,headsepline]{book}
\usepackage[margin=1in,headheight=13.6pt]{geometry}
\usepackage{paralist} % List environment
\usepackage{color} % For colored text
\usepackage{times}
\usepackage{amsfonts} % Additional math fonts
\usepackage{amsmath} % Math symbols
\usepackage{latexsym}
\usepackage{graphicx} % For including images
% \usepackage{listings} % If listings are needed
\usepackage{macros} % Our own definitions
% \usepackage{wrapfig} % To wrap images
% \usepackage{algorithmic} % Nice algorithm environment
% \usepackage{algorithm}
\usepackage{fancyhdr} % Produce the nice header
%\usepackage{fullpage} % Use the full page
% Change the appearance of the header. Here \MakeUppercase is hard-coded, so renewing this command allows to elegantly change the header appearance.
\renewcommand{\MakeUppercase}{\scshape}
% Set the headings' appearance in the ``fancy'' pagestyle
\fancyhead{}
\fancyhead[RO, LE]{\leftmark}
\fancyfoot{}
\fancyfoot[RO, LE]{\thepage}
% The first pages shall be empty, even no page numbering
\begin{document}
\pagestyle{empty} % even no page number
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0.0pt}
\fancyfoot{}
\fancyhead{}
}
% Title page, modify accordingly
\input{title}
\cleardoublepage
\input{sections/00_abstract}
% Input here any acknowledgements
\input{acknowledgements}
\cleardoublepage
\newpage
% % Chapter-pages etc. use the ``plain'' pagestyle - since we don't want to have a heading at all at chapter-pages, redefine plain accordingly. Don't forget the page number.
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0.0pt}
\fancyfoot{}
\fancyfoot[RO, LE]{\thepage}
\fancyhead{}
}
\pagestyle{fancy}
\pagenumbering{Roman}
% Insert table of contents
\tableofcontents
% Insert list of figures
\listoffigures
\cleardoublepage
% Insert list of tables
\listoftables
\cleardoublepage
\newpage
\pagenumbering{arabic}
%% ----------------------------------------------------------------------------
% Actual text comes here - defer it to other files and use \input{bla.tex}, ..
%% ----------------------------------------------------------------------------
\input{sections/01_intro}
\input{sections/02_relatedwork}
\input{sections/03_method}
\input{sections/04_experiments}
\input{sections/05_discussion}
\input{sections/06_conclusion}
%% ----------------------------------------------------------------------------
% If Appendix is needed
%% ----------------------------------------------------------------------------
\appendix
\input{sections/07_appendix}
%% ----------------------------------------------------------------------------
% Bibliography is stored in references.bib file, and can often be found
% online on webpages like dblp.uni-trier.de and Google Scholar
%
% To include it in your thesis, run
% pdflatex main
% bibtex main
% pdflatex main
% pdflatex main
%
% This ensures all references are done correctly.
%% ----------------------------------------------------------------------------
\bibliographystyle{plain}
\bibliography{references}
\end{document}