-
Notifications
You must be signed in to change notification settings - Fork 0
/
bthdiss.tex
88 lines (71 loc) · 2.7 KB
/
bthdiss.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
% BTH Dissertation Style (see https://github.com/CaterHatterPillar/bth-dissertation-style)
% Blekinge Institute of Technology dissertation/thesis template.
%
\documentclass[oneside]{bthdiss} % oneside as to allow single page chapters.
\usepackage{hyperref} % Used to hyperlink institutional website and
% student e-mail address.
\usepackage{textcomp} % Times New Roman
\usepackage{epstopdf} % epstopdf is included to accomodate for .eps
% images on some platforms (encountered on
% MikTeX Windows).
\usepackage{changepage} % Used to change page dimensions. Should be
% included in most TeX distributions.
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\DeclareGraphicsExtensions{.pdf}
\begin{document}
% Personalize these:
% Thesis number (at BTH, this is given to you only after the thesis
% has been graded):
\newcommand{\bthdissthesisno}{\textbf{DEPT}-\textbf{YEAR}-\textbf{NO}}
\newcommand{\bthdissthesistitle}{%
\textbf{Centered Title Times Font}\\
\vspace{0.25cm}\textbf{Size 24 Bold}} % Thesis title.
\newcommand{\bthdissthesissubtitle}{%
\textbf{Centered Subtitle Times Font}\\
\vspace{0.25cm}\textbf{Size 16 Bold}} % Thesis subtitle (if applicable).
\newcommand{\bthdissfirstname}{Firstname} % Your first name.
\newcommand{\bthdisslastname}{Lastname} % Your last name.
% The degree you're aspiring to (go get 'em tiger):
\newcommand{\bthdissdegree}{Master of Science in Computer Science}
% The department you're submitting your thesis to:
\newcommand{\bthdissdept}{Dept. Computer Science \& Engineering}
% The number of weeks you've spent on the project.
\newcommand{\bthdissnumweeks}{\textbf{XX}}
% Your student e-mail adress:
\newcommand{\bthdissemail}{%
\href{mailto:[email protected]}{[email protected]}}
% The title and name of the university advisor that has been assigned to you:
\newcommand{\bthdissadvisoruni}{Prof. Firstname Lastname}
% Your external advisor (if applicable):
\newcommand{\bthdissadvisorext}{Dr. Firstname Lastname}
% The association of your external advisor:
\newcommand{\bthdissadvisorextorg}{Corporation AB}
\input{bthdiss_front.tex}
\input{bthdiss_abstract.tex}
\pagestyle{plain}
\setcounter{page}{1}
% The grouping and clearpage-shabang has been added to accomodate for
% a mysterious blank page preceding the table of contents.
\begingroup%
\let\cleardoublepage\clearpage%
\tableofcontents%
\endgroup%
\cleardoublepage%
\pagestyle{headings}
\pagenumbering{arabic}
\chapter{Introduction}
\ldots
\chapter{Related Work}
\ldots
\chapter{Method}
\ldots
\chapter{Results}
\ldots
\chapter{Analysis}
\ldots
\chapter{Conclusions and Future Work}
\ldots
\chapter*{References}
\ldots
\end{document}