-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.tex
59 lines (47 loc) · 1.19 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
% ------------------------------------------
% IEEE ARTICLE TEMPLATE
% ------------------------------------------
% Author(s):
% Institution(s):
% ------------------------------------------
\documentclass[journal,twocolumn,letterpaper,10pt]{ieee-sty/IEEEtran}
\usepackage[acronym]{glossaries}
\usepackage{indentfirst}
\usepackage{url}
% Generates the acronyms list
\makeglossaries
% Acronyms list
\input{acronyms/acronyms.tex}
% ------------------------------------------
% MAIN DOCUMENT
% ------------------------------------------
\usepackage{graphicx}
\usepackage{cite}
\usepackage{algorithm} %format of the algorithm
\usepackage{algorithmic} %format of the algorithm
\usepackage{multirow} %multirow for format of table
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{tabu}
\begin{document}
% Variables file
\input{variables.tex}
% Article title
\title{\Title}
% Author(s) Name
\author{\Authors\\
\Institutions}
\maketitle
% Abstract
\input{abstract/abstract.tex}
% Keywords
\input{keywords/keywords.tex}
% Sections
\input{sections/main.tex}
\if\hasBibliography 1
% Bibliography
\bibliographystyle{IEEEtran}
% Bibliography file
\bibliography{bibliography/article}
\fi
\end{document}