-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
102 lines (78 loc) · 2.18 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
101
102
% =xelatex+makeindex+bibtex
\documentclass[a4paper, 12pt]{report}
%%%%%%%%%%%%
% Packages %
%%%%%%%%%%%%
\usepackage[english]{babel}
\usepackage[noheader]{packages/sleek}
\usepackage{packages/sleek-title}
\usepackage{packages/sleek-theorems}
\usepackage{packages/sleek-listings}
\usepackage{import}
\usepackage{fontspec}
\usepackage[CheckSingle, CJKmath]{xeCJK}
\usepackage{CJKulem}
% \setCJKmainfont{Noto Sans CJK TC}
\setCJKmainfont{Times New Roman}
\setCJKmainfont{標楷體}
\linespread{1.5}
\lstset{style=cpp}
\usepackage{packages/rish}
%%%%%%%%%%%%%%
% Title-page %
%%%%%%%%%%%%%%
\logo{./resources/pdf/blank.png} % TODO: 把上面的空白想辦法拿掉(see pdf)
\institute{輔仁大學資訊工程學系專題報告}
\title{Rish Engine - 2D 遊戲引擎}
\subtitle{從零開始製作遊戲引擎}
\author{
\raggedright
\hspace{2.5cm} 406262515 資工四乙\enspace 鍾秉桓 [email protected] \\
\hspace{2.5cm} 406262084 資工四乙\enspace 梁博全 [email protected] \\
\hspace{2.5cm} 406262319 資工四乙\enspace 黃育晧 [email protected] \\
\hspace{2.5cm} 406262163 資工四乙\enspace 黃品翰 [email protected] \\
\ \\
\centering
報告編號: CS109-PR-B03 \\
指導教授: 鄭進和\enspace 副教授 \\
}
%\supervisor{Linus \textsc{Torvalds}}
%\context{Well, I was bored...}
\date{\today}
%%%%%%%%%%%%%%%%
% Bibliography %
%%%%%%%%%%%%%%%%
\addbibresource{./resources/bib/references.bib}
%%%%%%%%%%
% Others %
%%%%%%%%%%
\lstdefinestyle{latex}{
language=TeX,
style=default,
%%%%%
commentstyle=\ForestGreen,
keywordstyle=\TrueBlue,
stringstyle=\VeronicaPurple,
emphstyle=\TrueBlue,
%%%%%
emph={LaTeX, usepackage, textit, textbf, textsc}
}
\FrameTBStyle{latex}
\def\tbs{\textbackslash}
%%%%%%%%%%%%
% Document %
%%%%%%%%%%%%
\nocite{*} % Force prints all the bibs
\begin{document}
\maketitle
\import{./}{摘要.tex}
\romantableofcontents
\listoffigures
\listoftables
\import{./}{ch1_緒論.tex}
\import{./}{ch2_系統說明.tex}
\import{./}{ch3_系統實作結果.tex}
\import{./}{ch4_結論與未來展望.tex}
\import{./}{ch5_心得.tex}
\printbibliography
\end{document}