-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
100 lines (79 loc) · 3.3 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
\documentclass[%draft,
utf8,% More capable input encoding than latin-1.
parskip,% For vertical whitespace between paragraphs. This comes down to more than just using parskip.sty, so it's better to use this class option.
% S5MP % If you intend to really use margin paragraphs (not recommended!).
%crop,% Produce output with crop marks and paper size A4. Liu-Tryck should like this. Automatically adds information, including the physical page number, at the top of each page.
% Add option 'noInfo' to suppress the info at the top of each page when using option 'crop'.
% Font options: 'kp' (default), 'times', 'lm'. The KpFonts (loaded using 'kp'), is the most complete font among the provided options. Among other, it supports slanted small caps. See rtthesis.cls for more details regarding the font options.
largesmallcaps,intlimits,widermath,% Good options to KpFonts.
sharecounter,nobreak,definition=marks,% See comments in the results chapter of this document for more information on these options!
%numbers, % If you want to cite references by numbers, use this option.
noparts% Use option 'noparts' if you do not make use of part divisions.
]{rtthesis}
\usepackage{mythesis}
\usepackage{hypernat}
\usepackage{sidecap}
% My inclusions/definitions
\def\obs#1{\left<#1\right>}
%\newcommand\abs[1]{\left|#1\right|}
\newcommand\abs[1]{|#1|}
%\graphicspath{ {images_folder/}{other_folder/}{third_folder/} }
\graphicspath{{figures/}{figures/default/}{figures/created/}{figures/validation/}{figures/signal/}{figures/signal/m/}}
\usepackage{mathrsfs} %Nice L
\newcommand{\Intl}{\mathscr{L}}
\newcommand{\Lagr}{\mathcal{L}}
\usepackage{pdflscape} %To be able to rotate pages.
% Be able to blackout text with \blackout{}
\newlength{\blackoutwidth}
\newcommand{\blackout}[1]
{%necessary comment
\settowidth{\blackoutwidth}{#1}%necessary comment
\rule[-0.3em]{\blackoutwidth}{1.125em}%necessary comment
}
%\usepackage{lineno} %Package to add line numbers to .pdf
%\linenumbers %Add line numbers to .pdf
\usepackage{multirow} %Mulitrow tabels
\usepackage{longtable} %Tables spanning more than 1 page, as in appendix.
%All own references in mythesis.sty.
\begin{document}
\selectlanguage{english}
\makeFrontPage
\frontmatter
\maketitle
\makeLibraryPage{\input{engelsk-sammanfattning}} %In rtmsc-defs-utf8.sty
%\begin{abstract}[swedish]
% \input{svensk-sammanfattning}
%\end{abstract}
\begin{abstract}[english]
\input{engelsk-sammanfattning}
\end{abstract}
\include{tack}
\tableofcontents
%\newpage
% Add a list of all figure captions and makes sure that the tile is set to the right as the rest of them.
%\begin{flushright}
%\listoffigures
%\end{flushright}
\include{notation}
\mainmatter
\include{introduction}
\include{validationofsmearing}
\include{darkmatter}
\include{resultsandconclusions}
%\include{method}
%\include{results}
%\include{discussion}
%\include{conclusions}
\part*{Appendix}
\appendix
\include{datasets}
\include{flowchart}
%\include{detaljer}
%\include{rtthesis-doc}
\backmatter
%\nocite{*}
% The citation style used now is controlled by: \RequirePackage[sort&compress, numbers]{natbib} in rtthesis.cls. Remove [] to get default.
% To remove cited on pages .. change line 471 \ExecuteOptions{backref} in rtthesis.cls to \ExecuteOptions{nobackref}
\bibliography{myrefs}
\printindex
\end{document}