Set up elsearticle template with meta data
- paper.tex + main file to generate the PDF version from + rough structure of the paper + set static/elsearticle.cls as the document class - tex/ folder + glossary.tex => holds terms listed in glossary + meta.tex => add meta data (incl. abstract) of the paper + preamble.tex => holds LaTeX imports and document-wide settings + references.bib => holds BibTeX data of sources * set static/elsarticle-harv.bst as quoting style
This commit is contained in:
parent
45c8d2b1bf
commit
f3df93d58d
7 changed files with 2725 additions and 0 deletions
22
paper.tex
Normal file
22
paper.tex
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
\documentclass[preprint,review,12pt]{static/elsarticle}
|
||||||
|
|
||||||
|
\input{tex/preamble}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\input{tex/meta}
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
Lorem ipsum.
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
\input{tex/glossary}
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
\appendix
|
||||||
|
\newpage
|
||||||
|
|
||||||
|
\bibliographystyle{static/elsarticle-harv}
|
||||||
|
\bibliography{tex/references}
|
||||||
|
|
||||||
|
\end{document}
|
1597
static/elsarticle-harv.bst
Normal file
1597
static/elsarticle-harv.bst
Normal file
File diff suppressed because it is too large
Load diff
1056
static/elsarticle.cls
Normal file
1056
static/elsarticle.cls
Normal file
File diff suppressed because it is too large
Load diff
1
tex/glossary.tex
Normal file
1
tex/glossary.tex
Normal file
|
@ -0,0 +1 @@
|
||||||
|
\printglossaries
|
47
tex/meta.tex
Normal file
47
tex/meta.tex
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
\begin{frontmatter}
|
||||||
|
|
||||||
|
\journal{Transportation Research Part E}
|
||||||
|
\title{Real-time Demand Forecasting for an Urban Delivery Platform}
|
||||||
|
|
||||||
|
\author[WHU]{Alexander Hess\fnref{emails}}
|
||||||
|
\author[WHU]{Stefan Spinler\fnref{emails}}
|
||||||
|
\author[MIT]{Matthias Winkenbach\fnref{emails}}
|
||||||
|
\address[WHU]{
|
||||||
|
WHU - Otto Beisheim School of Management,
|
||||||
|
Burgplatz 2, 56179 Vallendar, Germany
|
||||||
|
}
|
||||||
|
\address[MIT]{
|
||||||
|
Massachusetts Institute of Technology,
|
||||||
|
77 Massachusetts Avenue, Cambridge, MA 02139, United States
|
||||||
|
}
|
||||||
|
\fntext[email]{
|
||||||
|
Emails:
|
||||||
|
alexander.hess@whu.edu,
|
||||||
|
stefan.spinler@whu.edu,
|
||||||
|
mwinkenb@mit.edu
|
||||||
|
}
|
||||||
|
|
||||||
|
\begin{abstract}
|
||||||
|
Meal delivery platforms like Uber Eats shape the landscape in cities around the world.
|
||||||
|
This paper addresses forecasting demand into the short-term future.
|
||||||
|
We propose an approach incorporating
|
||||||
|
both classical forecasting
|
||||||
|
and machine learning methods.
|
||||||
|
Model evaluation and selection is adapted to demand typical for such a platform
|
||||||
|
(i.e., intermittent with a double-seasonal pattern).
|
||||||
|
The results of an empirical study with a European meal delivery service show
|
||||||
|
that machine learning models become competitive
|
||||||
|
once the average daily demand passes a threshold.
|
||||||
|
As a main contribution, the paper explains
|
||||||
|
how a forecasting system must be set up
|
||||||
|
to enable predictive routing.
|
||||||
|
\end{abstract}
|
||||||
|
|
||||||
|
\begin{keyword}
|
||||||
|
demand forecasting \sep
|
||||||
|
intermittent demand \sep
|
||||||
|
machine learning \sep
|
||||||
|
urban delivery platform
|
||||||
|
\end{keyword}
|
||||||
|
|
||||||
|
\end{frontmatter}
|
2
tex/preamble.tex
Normal file
2
tex/preamble.tex
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
\usepackage[acronym]{glossaries}
|
||||||
|
\makeglossaries
|
0
tex/references.bib
Normal file
0
tex/references.bib
Normal file
Loading…
Reference in a new issue