-
Notifications
You must be signed in to change notification settings - Fork 0
/
report.tex
103 lines (83 loc) · 2.37 KB
/
report.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
103
\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage[utf8]{vietnam}
\usepackage[left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry}
\usepackage{subfiles}
\usepackage{fancyhdr}
\usepackage{hyperref}
\usepackage{etoolbox}
\usepackage{float}
\usepackage{array}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{verbatim}
\usepackage{amsmath}
\usepackage{mathtools}
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\DeclarePairedDelimiter{\ceil}{\lceil}{\rceil}
\usepackage[nottoc,notlof,notlot]{tocbibind}
% Link color setup
\hypersetup{
colorlinks = true,
linkcolor = black,
citecolor = blue
}
% Change format of page
\pagestyle{fancy}
\fancyhf{}
\fancyhead{}
\fancyfoot{}
\fancyhead[L]{Edge Detection \& HOG}
\fancyfoot[L]{Tạ Quang Tùng, Phạm Minh Tâm - KSTN-CNTT-K60}
\fancyfoot[R]{\thepage}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
\renewcommand{\thesection}{\arabic{section}}
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}
\renewcommand{\thesubsubsection}{\thesubsection.\arabic{subsubsection}}
% format
\usepackage{titlesec}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\ttlh@hang}{\parindent\z@}{\parindent\z@\leavevmode}{}{}
\patchcmd{\ttlh@hang}{\noindent}{}{}{}
\makeatother
\titleformat{\subsection}
{\normalfont\large\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}
{\normalfont\normalsize\bfseries}{\thesubsubsection}{1em}{}
\setcounter{secnumdepth}{3}
% tab command
\newcommand\tab[1][1cm]{\hspace*{#1}}
\lstdefinestyle{customc}{
belowcaptionskip=1\baselineskip,
breaklines=true,
frame=L,
xleftmargin=\parindent,
language=C,
showstringspaces=false,
basicstyle=\footnotesize\ttfamily,
keywordstyle=\bfseries\color{green!40!black},
commentstyle=\itshape\color{purple!40!black},
identifierstyle=\color{blue},
stringstyle=\color{orange},
}
\lstset{escapechar=@,style=customc}
\begin{document}
\subfile{sections/title-page.tex}
\pagenumbering{gobble}
\tableofcontents
\newpage
\pagenumbering{arabic}
\newpage
\setcounter{page}{1}
\section{Egde Detection (Xác định biên)}
\subfile{sections/edge-detection.tex}
\section{Histogram of Oriented Gradients (HOG)}
\subfile{sections/hog.tex}
\section{Phát hiện người sử dụng HOG và SVM}
\subfile{sections/human-detection.tex}
\bibliography{report}{}
\bibliographystyle{plain}
\end{document}