-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
108 lines (88 loc) · 2.49 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
%% 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{graphicx}
\usepackage{sepfootnotes}
\usepackage{csquotes}
\input{reviewing}
%%
%% 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{AMW 2024: 16th Alberto Mendelzon International Workshop on Foundations of Data Management, September 30th–October 4th, 2024, Mexico City, Mexico}
%%
%% The "title" command
\title{Opportunities for Shape-Based Optimization of Link Traversal Queries}
%%
%% The "author" command and its associated commands are used to define
%% the authors and their affiliations.
\author[1]{Bryan-Elliott Tam}[%
email=bryanelliott.tam@ugent.be,
orcid=0000-0003-3467-9755
]
\cormark[1]
\author[1]{Ruben Taelman}[%
orcid=0000-0001-5118-256X,
email=ruben.taelman@ugent.be,
url=https://www.rubensworks.net,
]
\author[1]{Pieter Colpaert}[%
orcid=0000-0001-6917-2167,
email=pieter.colpaert@ugent.be,
url=https://pietercolpaert.be
]
\author[1]{Ruben Verborgh}[%
orcid=0000-0002-8596-222X,
email=ruben.verborgh@ugent.be,
url=https://ruben.verborgh.org
]
\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
Query containment \sep
RDF data shapes \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/shape_index}
\input{section/result}
\input{section/Conclusion}
% --- Bibliography ---
\bibliography{references}
\end{document}
%%
%% End of file