-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeature_kernel.tex
58 lines (44 loc) · 1.02 KB
/
feature_kernel.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
\documentclass[12pt,a4paper]{article}
\usepackage{emptypage}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{dirtytalk}
\usepackage{listings}
\usepackage{tablefootnote}
\usepackage{graphicx}
\usepackage{float}
\usepackage{algorithm}
\usepackage{algorithmic}
\renewcommand{\algorithmiccomment}[1]{$\triangleright$ #1}
\newcommand{\refcomment}[1]{\algorithmiccomment as in \Cref{#1}}
\lstset{
frame = single,
language=bash,
framexleftmargin=-15pt,
framexrightmargin=-15pt}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
filecolor=magenta,
urlcolor=cyan,
}
\usepackage{cleveref}
\usepackage{tabularx}
\graphicspath{{images/}}
\title{Feature Kernel}
\author{Filippo Ranza}
\date{}
\newcommand{\fk}{Feature Kernel}
\newcommand{\ks}{Kernel Search}
%
\begin{document}
\maketitle
\tableofcontents
\listofalgorithms
\listoffigures
\include{main_idea}
\include{working_principle}
\include{implementation}
\include{experimental_results.tex}
\end{document}