-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.tex
100 lines (79 loc) · 3.8 KB
/
article.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
\documentclass[letterpaper, 10 pt, conference]{templates/ieeeconf} % For letter paper
% \documentclass[a4paper, 10pt, conference]{templates/ieeeconf} % For A4 paper
\IEEEoverridecommandlockouts % This command is only needed if
% you 2want to use the \thanks command
\overrideIEEEmargins % Needed to meet printer requirements.
%% Add required packages %%
\usepackage{amsmath} % Assumes amsmath package installed
\usepackage{epsfig} % For postscript graphics files
\usepackage{cite} % For multiple citations
\usepackage{subfig} % For multiple figures
\usepackage{float} % To force position of floats
\usepackage{algorithm,algorithmic} % For algorithm table
\usepackage{hyperref} % To add url link in footnotes
\usepackage{array} % For tables
\usepackage{verbatim} % Needed for the "comment" environment to make LaTeX comments
\usepackage{caption}
\usepackage{multirow}
\usepackage[section]{placeins}
\usepackage{lipsum}
\usepackage{booktabs}
\usepackage{mathtools} % For cases eq
\usepackage{tikz} % For numbered circles
%% Add custom commands %%
\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}
\newcommand\T{\rule{0pt}{2.0ex}} % Top strut
\newcommand\B{\rule[-0.4ex]{0pt}{0pt}} % Bottom strut
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
\node[shape=circle,draw,inner sep=1pt] (char) {#1};}} % For numbered circles
\DeclarePairedDelimiter{\nint}\lfloor\rceil % For integer rounding
% Algorithmic modifications
\makeatletter
\newcommand{\ALOOP}[1]{\ALC@it\algorithmicloop\ #1%
\begin{ALC@loop}}
\newcommand{\ENDALOOP}{\end{ALC@loop}\ALC@it\algorithmicendloop}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\newcommand{\algorithmicbreak}{\textbf{break}}
\newcommand{\BREAK}{\STATE \algorithmicbreak}
\makeatother
\setlength{\tabcolsep}{4pt}
\hypersetup{urlcolor=black, colorlinks=false} % Colours hyperlinks in blue, but this can be distracting if there are many links.
%% Define figure path %%
\graphicspath{{figures/}}
%%% Main text %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Header %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{\LARGE \bf
IEEE Conference paper template
}
\author{
Patiphon Narksri$^{1}$
\thanks{$^{1}$Graduate School of Informatics, Nagoya University, Furo-cho, Chikusa-ku, Nagoya, 464-8601, Japan}%
}
%%% Header %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Contents %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
\thispagestyle{empty}
\pagestyle{empty}
\input{contents/0_abstract}
\input{contents/1_introduction}
\input{contents/2_related_work}
\input{contents/3_proposed_method}
\input{contents/4_experiments}
\input{contents/5_conclusion}
\addtolength{\textheight}{-0.9cm} % This command serves to balance the column lengths
% on the last page of the document manually. It shortens
% the textheight of the last page by a suitable amount.
% This command does not take effect until the next page
% so it should come on the page before the last. Make
% sure that you do not shorten the textheight too much.
%%% Contents %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section*{Acknowledgment}
This work was supported by xxxx.
%%% Main text %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\url#1{} % To disable URL in the references
\bibliographystyle{templates/IEEEtran}
\bibliography{bib/article}
\end{document}
\grid