-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
69 lines (52 loc) · 1.57 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
% Page size: B5
% Font size: 10pt
\documentclass[10pt,b5paper,twoside,openright]{book}
\usepackage{config}
\begin{document}
\def\mytitle{My Thesis}
\title{\mytitle}
\def\myauthor{John Doe}
\author{\myauthor}
% The first few pages of a NTNU thesis is added from a generated PDF. For
% information on generating your own front page with your own title, see
% https://daimarkiv.idi.ntnu.no/faq_innlevering.php and
% https://www.ntnu.no/grafisksenter/bestillingsalternativer.
%
% After it is generated, and it has the same set of pages as cover.pdf, replace
% it with your own.
\includepdf[pages={1,2,3,4}]{assets/cover.pdf}
\frontmatter
\pagestyle{plain}
\begingroup
\let\cleardoublepage\clearpage
% Abstract in English and Norwegian
\input{sections/0-abstract}
\input{sections/0-sammendrag}
\tableofcontents \clearpage
\listoftables \clearpage
\listoffigures \clearpage
\endgroup
\mainmatter{}
\pagestyle{headings}
% Chapters
\chapter{Introduction}\label{ch:introduction}
\input{sections/1-introduction}
\chapter{Literature Study}\label{ch:literature-study}
\input{sections/2-literature-study}
\chapter{Method}\label{ch:method}
\input{sections/3-method}
\chapter{Results}\label{ch:results}
\input{sections/4-results}
\chapter{Discussion}\label{ch:discussion}
\input{sections/5-discussion}
\chapter{Conclusion}\label{ch:conclusion}
\input{sections/6-conclusion}
\begin{flushleft}
\bibliographystyle{apalike}
\bibliography{references}
\addcontentsline{toc}{chapter}{Bibliography}
\end{flushleft}
% Back page from template
\includepdf[pages={5}]{assets/cover.pdf}
\end{document}
\endinput