-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
138 lines (104 loc) · 2.64 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
\documentclass[a4paper,twoside]{bth}
% BTH THESIS TEMPLATE
%--------------------
% Template version 3.4.1 -- Aug 31, 2020
%--------------------
% Please change the data below appropriately to fit your thesis.
% The data will be used to generate text in various places on the
% thesis front and inner pages.
%--------------------
% Global values
\input{defines}
% Package config
\input{includes/includes}
\input{includes}
% DOCUMENT BEGINS HERE
\begin{document}
\pagestyle{plain}
\pagenumbering{roman}
% THESIS FRONT PAGE
% ----------------------------------------
\input{includes/frontpage}
% ----------------------------------------
% THESIS INNER PAGE
% ----------------------------------------
\input{includes/innerpage}
% ----------------------------------------
\setcounter{page}{1}
%%%%%%%%%%%%%%%%%%%%%%%%
% YOUR TEXTS START HERE
%%%%%%%%%%%%%%%%%%%%%%%%
% ABSTRACT IN ENGLISH
% -------------------
\input{abstract-english}
% -------------------
% ABSTRACT IN SWEDISH
% -------------------
\input{abstract-swedish}
% -------------------
% ACKNOWLEDGEMENTS
% -------------------
\input{acknowledgements}
% -------------------
% TABLE OF CONTENTS
% -------------------
% Insert the Table of Contents
\tableofcontents
\cleardoublepage
\setcounter{page}{1}
% -------------------
% START OF THESIS
% -------------------
\pagestyle{headings}
\pagenumbering{arabic}
% Introduction
\glsresetall
\input{chapters/introduction/main}
% Background
\glsresetall
\input{chapters/background/main}
% Related Work
\glsresetall
\input{chapters/related-work/main}
% Method
\glsresetall
\input{chapters/method/main}
% Results and Analysis
\glsresetall
\input{chapters/results/main}
% Discussion
\glsresetall
\input{chapters/discussion/main}
% Conclusions
\glsresetall
\input{chapters/conclusions/main}
% All references are in a separate file: thesis-refs.bib
\setlength{\bibsep}{4pt}
\bibliography{thesis-refs}
\bibliographystyle{IEEEtranS}
% Add a list of abbreviations (included in the ToC)
\printglossary[type=\acronymtype]
% Add a list of glossary (included in the ToC)
\printglossary
% Add a list of figures
\listoffigures
% Add a list of tables
\listoftables
% Appendix
\input{chapters/appendix/main}
% DO NOT CHANGE BELOW
% This part makes sure that the last page is even with BTH-logo.
% -------------------
\cleardoublepage
\thispagestyle{empty}
\vspace*{\fill}
\clearpage{\thispagestyle{empty}}
\changepage{3cm}{1cm}{-0.5cm}{-0.5cm}{}{-1.5cm}{}{}{}
\vspace*{\fill}
\center
{\bthcsnotextlogo{3cm}}
\\
\noindent\makebox[\linewidth]{\rule{\textwidth}{1pt}}
Faculty of \faculty, Blekinge Institute of Technology, 371 79 Karlskrona, Sweden
% -------------------
\end{document}