-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
97 lines (76 loc) · 2.1 KB
/
thesis.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
\newcommand{\msepath}{./template-latex}
\documentclass[
major=tic,
type=deepening, % added "deepening" key work. You can use "thesis" or "semester" too
confidential=false,
lang=en,
path=\msepath,
% report options
twoside
]{\msepath/mse-thesis}
\title{Breaking RSA cryptosystem in 27 seconds}
\author{Mr. Cyrill Gremaud}
\contact{cyrill.gremaud@hefr.ch}
\professor{
Mr. Linus Torvald
\institute{Linux Foundation}
\email{linus@torvald.org}
\and
Mr. Adi Shamir
\institute{RSA Foundation}
\email{adi.shamir@rsa.org}
}
\expert{
Mr. Ron Rivest
\institute{RSA Foundation}
\email{ron.rivest@rsa.org}
}
\version{Version 1}
\proposedby{
Mr. Jack Sparrow
\institute{Idle islands AG}
\email{j.s@is.com}
}
\advisor{Mr. Linus Torvald}
\headofmse{Fariba Moghaddam Bützberger}
% information for students where project takes place abroad - simply remove
% these lines else
%\supervisor{
% Prof. John Doe
% \institute{HES-SO}
% \email{john.doe@nowhere.com}
%}
%\location{
% Institute which is aboard
% \institute{HES-SO}
%}
\addbibresource{bibliography.bib}
\input{glossary.tex}
\makeglossaries
\begin{document}
% Preamble #################################################################
\pagenumbering{roman}
\input{chapters/abstract}
\input{chapters/acknowledgments}
% Table of Contents ########################################################
\inserttoc
% Chapters #################################################################
\pagenumbering{arabic}
\input{chapters/introduction}
\input{chapters/analysis}
\input{chapters/design}
\input{chapters/prototyping}
\input{chapters/conclusion}
% Bibliography & Lists & Glossary ##########################################
\insertglossary %to do
\insertbibliography
\insertlof
\insertlot
%\insertlol
% Appendix #################################################################
\begin{appendix}
\input{appendices/cd-rom-content}
\input{appendices/recommanded-reading}
\input{appendices/source-code-repository}
\end{appendix}
\end{document}