-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
123 lines (102 loc) · 2.77 KB
/
main.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
%% The first command in your LaTeX source must be the \documentclass command.
%%
%% Options:
%% twocolumn : Two column layout.
%% hf: enable header and footer.
\documentclass[
% twocolumn,
% hf,
]{ceurart}
%%
%% One can fix some overfulls
\sloppy
%%
%% Minted listings support
%% Need pygment <http://pygments.org/> <http://pypi.python.org/pypi/Pygments>
\usepackage{listings}
%% auto break lines
\lstset{breaklines=true}
\usepackage{svg}
\usepackage{graphicx}
\usepackage{sepfootnotes}
\usepackage{csquotes}
\usepackage{subfig}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{hhline}
\input{reviewing}
\lstset{
basicstyle=\ttfamily\footnotesize,
backgroundcolor=\color{gray!10},
numbers=left,
numberstyle=\tiny\color{gray},
stepnumber=1,
numbersep=5pt,
showstringspaces=false,
breaklines=true,
frame=single
}
%%
%% end of the preamble, start of the body of the document source.
\begin{document}
%%
%% Rights management information.
%% CC-BY is default license.
\copyrightyear{2024}
\copyrightclause{Copyright for this paper by its authors.
Use permitted under Creative Commons License Attribution 4.0
International (CC BY 4.0).}
%%
%% This command is for the conference information
\conference{Posters, Demos, and Industry Tracks at ISWC 2024, November 13--15, 2024, Baltimore, USA}
%%
%% The "title" command
\title{Optimizing Traversal Queries of Sensor Data Using a Rule-Based Reachability Approach}
%%
%% The "author" command and its associated commands are used to define
%% the authors and their affiliations.
\author[1]{Bryan-Elliott Tam}[%
orcid=0000-0003-3467-9755
]
\cormark[1]
\author[1]{Ruben Taelman}[%
orcid=0000-0001-5118-256X,
url=https://www.rubensworks.net,
]
\author[1]{Julián {Rojas Meléndez}}[%
orcid=0000-0002-6645-1264,
url=https://julianrojas.org
]
\author[1]{Pieter Colpaert}[%
orcid=0000-0001-6917-2167,
url=https://pietercolpaert.be
]
\cortext[1]{Corresponding author.}
\address[1]{IDLab,
Department of Electronics and Information Systems, Ghent University – imec}
%%
%% Keywords. The author(s) should pick words that accurately describe
%% the work being presented. Separate the keywords with commas.
\begin{keywords}
Linked data \sep
Link Traversal Query Processing \sep
Fragmented database \sep
Descentralized environments
\end{keywords}
%%
%% This command processes the author and affiliation and title
%% information and builds the first part of the formatted document.
\maketitle
\input{section/abstract}
\input{section/introduction}
\input{section/guided_link_traversal}
\input{section/Conclusion}
% --- Bibliography ---
\bibliography{references}
\end{document}
%%
%% End of file