-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
78 lines (66 loc) · 2.07 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
% !TEX TS-program = xelatex
% !BIB program = bibtex
% !TEX encoding = UTF-8 Unicode
\documentclass[
twoside,
openright,
degree = master, % degree = master | doctor
language = english, % language = chinese | english
fontset = template, % fontset = default | template | system | overleaf
watermark = false, % watermark = true | false
doi = true, % doi = true | false
]{ntuthesis}
\usepackage{minted}
\setminted{
linenos,
breaklines,
framesep=0pt,
fontsize=\small,
numbersep=5pt,
xleftmargin=5pt,
}
\usepackage{listings}
\newcommand{\listingautorefname}{Listing}
\newcommand{\rustsec}{KrustVM}
\newcommand{\rustcore}{Rcore}
\newcommand{\secore}{KCore}
\newcommand{\lock}{KMutex}
\definecolor{CodeGray}{RGB}{60, 60, 60}
\newcommand{\code}[1]{\texttt{\textcolor{CodeGray}{#1}}}
\newcommand{\todo}[1]{\textcolor{red}{#1}}
\input{ntusetup}
\begin{document}
% 封面與口試審定
% Cover and Verification Letter
\makecover % 論文封面(Cover)
\makeverification % 口試委員審定書(Verification Letter)
% 致謝與論文摘要
% Acknowledgement and Abstract
\input{front/acknowledgement} % 致謝(Acknowledgement)
\input{front/abstract} % 摘要(Abstract)
% 生成目錄與符號列表
% Contents of Tables and Denotation
\maketableofcontents % 目錄(Table of Contents)
\makelistoffigures % 圖目錄(List of Figures)
\makelistoftables % 表目錄(List of Tables)
% \input{front/denotation} % 符號列表(Denotation)
% 論文內容
% Contents of Thesis
\mainmatter
\input{contents/intro}
\input{contents/bg}
\input{contents/threat_model}
\input{contents/rewrite}
\input{contents/secure_rcore}
\input{contents/evaluation}
\input{contents/rwfw}
\input{contents/conclusions}
% 參考文獻
% References
\refmatter
\bibliographystyle{abbrv}
\bibliography{back/references}
% 附錄
% Appendices
% \input{back/appendix01}
\end{document}