-
Notifications
You must be signed in to change notification settings - Fork 3
/
article.tex
66 lines (48 loc) · 1.32 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
\documentclass{./llncs2e/llncs}
\usepackage{graphicx}
\usepackage{fixltx2e}
\usepackage{mathtools}
\usepackage[nolist,nohyperlinks]{acronym}
% Maintain images and tables within their respective sections
\usepackage[section]{placeins}
% Scientific notation
\usepackage[scientific-notation=true, round-precision=2, round-mode=figures]{siunitx}
% For tables
\usepackage{multirow}
%For symbols like trademark
\usepackage{textcomp}
% To improve captions of tables
\usepackage{caption}
\captionsetup[table]{skip=10pt}
% Improve encoding
\usepackage[utf8]{inputenc}
\pagestyle{plain}
% Built the glossary when the main file is built.
\usepackage[acronym]{glossaries}
\input{acronyms}
\makeglossaries
% Load configuration
\input{config}
\begin{document}
% -------------------------------------
% Title
% -------------------------------------
\title{\Title}
\subtitle{\SubTitle}
\author{\Author, \Email}
\institute{\Institution}
\maketitle
% -------------------------------------
% Abstract and keywords
% -------------------------------------
\input{abstract}
% -------------------------------------
% Sections
% -------------------------------------
\input{sections/main}
% -------------------------------------
% Bibliography
% -------------------------------------
\bibliographystyle{ieeetr}
\bibliography{references.bib}
\end{document}