-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex~
executable file
·96 lines (69 loc) · 2.46 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
%!TEX TS-program = pdflatex
% PHDTHESIS TEMPLATE FILE
% Adopted from Thomas Fabricius and Henrik Aalborg Nielsen
% Jan Larsen, IMM, DTU, Nov 2003 ver 1.0
% Updated by Finn Kuno Christensen, fkc@imm.dtu.dk Aug 15, 2008
% COMPILATION STEPS USING INVOLVING A PS FILE
% \documentclass[10pt,twoside,dvips]{book}
% latex phdthesis.tex
% dvips -D600 -Pamz -Pcmz -j0 phdthesis.dvi -o phdthesis.ps
% ps2pdf -sPAPERSIZE=b5 phdthesis.ps phdthesis.pdf (or use Acrobat Distiller)
% COMPILATION STEP USING PDFLATEX
\documentclass[10pt,twoside,pdftex]{book}
% pdflatex phdthesis.tex
%%%%%%%%%%% MODIFY THESE LINES ONLY %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\thesisyear{2010} % Year thesis submitted
\def\thesisnumber{XX} % Only number no year
\def\thesisauthor{Jens Christian Hillerup} % Thesis author
\def\thesistitle{Cryptanalysis of Rejsekortet} % Title of thesis
\def\thesiskeywords{}
\def\thesisISBN{} %OBSOBS provide ISBN number for industrial phd students ONLY
%\def\thesisversion{print} %OBSOBS choose this for printed version send to printing
\def\thesisversion{net} %OBSOBS choose this for the net version for the web and publication database
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\np}{$\mathcal{NP}$}
\input{preamble}
\begin{document}
\input{frontpage}
% PREFACE CHAPTERS INCLUDE
\include{abstract}
\frontmatter
\pagenumbering{roman}
\input{summary}
\markboth{}{}
\input{resume}
\markboth{}{}
\input{preface}
\markboth{}{}
%\input{papers}
%\markboth{}{}
\input{acknowledge}
\markboth{}{}
% TABLE OF CONTENTS
\newpage\mbox{}\newpage
\chaptermark{Contents}
\renewcommand{\sectionmark}[1]{\markright{#1}}
\sectionmark{Contents}
\addtolength{\parskip}{-\baselineskip}
\tableofcontents
\addtolength{\parskip}{\baselineskip}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
% MAIN CHAPTERS INCLUDE
\mainmatter
\include{chapter1/main} % On Rejsekortet
\include{chapter2/main} % Security analysis and threat model
\include{chapter3/main} % Attacks on Rejsekortet
\include{chapter4/main} % Improvements
\include{chapter5/main} % Conclusion
%\include{conclusion}
% APPENDIX CHAPTERS INCLUDE
\appendix
\include{appendix/main}
\backmatter
\chaptermark{Bibliography}
\renewcommand{\sectionmark}[1]{\markright{#1}}
\sectionmark{Bibliography}
%%%%%%%BIBLIOGRAPHY INCLUDE%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\bibliography{thesis} % Bibliography
\bibliographystyle{plain}
\end{document}