-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
92 lines (80 loc) · 3.05 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
%----------------------------------------------------------------------
% MAIN PROGRAM OF PAPER
%----------------------------------------------------------------------
% Set the class of document by IEEE
\documentclass[conference]{Class/IEEEtran}
%----------------------------------------------------------------------
% PACKAGE LOADING
%----------------------------------------------------------------------
% Customising captions in floating environments
\usepackage[small]{caption}
% Enhanced support for graphics and include Encapsulated PostScript
\usepackage{graphicx, epsfig}
% For manipulation and reference of small or subfigures and tables
\usepackage{subfigure}
% For algorithms handling
\usepackage[noend]{algorithmic}
% Floating algorithm environment with algorithmic keywords
\usepackage[ruled, vlined, linesnumbered]{algorithm2e}
% Improved citation handling
\usepackage{cite}
% Reimplementation of and extensions
\usepackage{verbatim}
% For AMS mathematical facilities
\usepackage{amsmath, amssymb, amsfonts}
% For the Text Companion fonts
\usepackage{textcomp}
% Driver-independent color extensions
\usepackage{xcolor}
%----------------------------------------------------------------------
% CONFIGURATION
%----------------------------------------------------------------------
% HINT: Fill in your information of this thesis in "Config/config.tex"
\input{Config/config}
% Set the path and the extension of figures
\graphicspath{{./Figures/}}
% Declare the order of filename extensions to try
\DeclareGraphicsExtensions{.pdf, .png, .jpg, .eps}
% Declare how to handle graphic files whose names end in extension
\DeclareGraphicsRule{.pdf}{eps}{.bb}{}
\DeclareGraphicsRule{.jpg}{eps}{.bb}{}
\DeclareGraphicsRule{.png}{eps}{.bb}{}
% Declare the space between figure and text
\setlength\textfloatsep{.7\baselineskip}
%----------------------------------------------------------------------
% MAIN CONTENT
%----------------------------------------------------------------------
\begin{document}
%%% IEEE COPYRIGHT NOTICE %%%
\IEEEoverridecommandlockouts
%%% TITLE %%%
% HINT:
% 1. Fill in your information of this thesis in "Config/config.tex"
% 2. Add the third (or more) author's info in "Config/config.tex" by yourself if needed
% 2. The naming convesion of author's info is ordered by "A, B, C"
% 3. Remember to append the third author in the following title
\title{\enTitle}
\author{
% HINT: Append the third (or more) author here
\enAuthorNameA \ and \enAuthorNameB \\
\enDeptName, \enUnivName, \enLocation \\
% HINT: Append the third (or more) author's email here
\authorEmailA, \authorEmailB
}
\maketitle
%%% CHAPTERS %%%
% HINT:
% 1. Arrange the order of all chapters here
% 2. Add your chapters as follow
\input{Chapters/0-Abstract}
\input{Chapters/1-Introduction}
\input{Chapters/2-RelatedWork}
\input{Chapters/3-Design}
\input{Chapters/4-Evaluation}
\input{Chapters/5-Conclusion}
%%% BIBLIOGRAPHY %%%
% Set the style of bibliography
\bibliographystyle{IEEEtran}
% Include bibliography
\bibliography{Bib/thesis.bib}
\end{document}