-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
56 lines (39 loc) · 1.04 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
%!TeX spellcheck = sv_SE
\documentclass[a4paper, parskip]{scrartcl}
\input{preamble.tex}
\input{commands.tex}
\begin{document}
\input{tex/title}
\newpage
% In the the end, the first page abstract and the start of your text should be separated by a blank page
%\blankpage
\input{tex/abstract.tex}
\begingroup
\hypersetup{hidelinks}
\tableofcontents
\endgroup
\thispagestyle{empty}
\newpage
% Remove all sections to easier copy-paste the text
% into a non-latex spell checker
%\renewcommand{\section}[1]{}
%\renewcommand{\subsection}[1]{}
%\let\figure\comment
%\let\endfigure\endcomment
%\let\listing\comment
%\let\endlisting\endcomment
\hypersetup{hidelinks}
\input{tex/introduction.tex}
\input{tex/background/background.tex}
\input{tex/design_neat.tex}
\input{tex/design_novelty_search.tex}
\input{tex/method.tex}
\input{tex/result.tex}
\input{tex/conclusion.tex}
\clearpage
\hypersetup{breaklinks=true}
%\bibliographystyle{plainnat}
\bibliographystyle{unsrt}
\bibliography{bibliography/references.bib}
\input{tex/appendices.tex}
\end{document}