-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
65 lines (46 loc) · 1.58 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
%% Master Thesis Template
%% Please update the specification through this link: https://daim.idi.ntnu.no/howto_thesis_submission.pdf
\documentclass[pdftex,12pt,b5paper,twoside]{book}
\usepackage[lmargin=25mm,rmargin=25mm,tmargin=27mm,bmargin=30mm]{geometry}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage[raggedright]{titlesec}
\titleformat{\paragraph}[hang]{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}{0pt}{3.25ex plus 1ex minus .2ex}{0.5em}
%%\setlength{\parindent}{4em}
\setlength{\parskip}{1em}
%%\renewcommand{\baselinestretch}{1.5}
\usepackage{color}
\definecolor{mygray}{gray}{0.6}
\newenvironment{graytext}{\color{mygray}}{\ignorespacesafterend}
\usepackage{tabu}
\usepackage{array}
\usepackage[toc,page]{appendix}
\usepackage{url}
\input{docsetup.tex}
\begin{document}
%% PART 1
%%The title page will be automatically generated and added by the DAIM system
%%\input{dedication.tex} %% Optional
\pagenumbering{roman}
\setcounter{page}{1}
%% PART 2
%%\input{summary.tex} %% Optional
\input{abstract.tex}
%\input{preface.tex} %% Optional
\input{acknowledgements.tex}
\input{list.tex} %% Generate TOC, list of tables, and list of figures automatically
%%\input{abbreviations.tex} %% Optional
\pagenumbering{arabic}
\setcounter{page}{1}
%% PART 3 -- The Chapters
\input{chapter1.tex} %% Edit each chapter
\input{chapter2.tex}
\input{chapter3.tex}
\input{chapter4.tex}
\input{chapter5.tex}
\input{chapter6.tex}
%% PART 4
\input{references.tex} %% Edit your references in "mylib.bib"
\input{appendix.tex} %% Optional
\end{document}