alo@0: \documentclass{llncs} alo@0: \usepackage{graphicx} alo@0: alo@0: \usepackage{amsmath,cite} alo@0: \usepackage{pifont} alo@0: \usepackage{listings} alo@0: \usepackage{courier} alo@0: \usepackage{adjustbox} alo@0: \usepackage{url} alo@0: \usepackage[ngerman,english]{babel} alo@0: \usepackage[utf8]{inputenc} alo@0: \newcommand{\cmark}{\fontsize{14}{14}\textbullet\selectfont} alo@0: \usepackage[usenames,dvipsnames]{color} alo@0: alo@0: \lstdefinelanguage{sparql} { alo@0: morekeywords={SELECT, WHERE, a, COUNT, GROUP, ORDER, BY, HAVING, as, DISTINCT, OPTIONAL}, alo@0: sensitive=true, alo@0: morecomment=[l][\color{ForestGreen}\bfseries\selectfont]{\#\ }, alo@0: moredelim=[s][\color{ForestGreen}\bfseries\selectfont]{?}{\ }, %variable alo@0: moredelim=[s][\color{NavyBlue}\bfseries\selectfont]{@}{\ }, %prefix alo@0: moredelim=[s][\color{OrangeRed}\bfseries\selectfont]{<}{>}, %red URIs alo@0: morestring=[b][\color{ForestGreen}]\", %green strings alo@0: morestring=[b]", alo@0: } alo@0: alo@0: \lstdefinestyle{sparql}{ alo@0: language=sparql, alo@0: basicstyle=\footnotesize\ttfamily\bfseries, alo@0: % basicstyle=\ttfamily, alo@0: keywordstyle=\color{blue}\bfseries, alo@0: identifierstyle=, alo@0: commentstyle=\color{ForestGreen}\bfseries, alo@0: stringstyle=\color{BlueGreen}\ttfamily, alo@0: showstringspaces=false, alo@0: emph={context},emphstyle=\color{BrickRed}\bfseries, alo@0: frame = lines, alo@0: %aboveskip = 15pt, alo@0: %framexbottommargin = 5pt, alo@0: %framextopmargin = 5pt, alo@0: aboveskip = 10pt, alo@0: framexbottommargin = 2pt, alo@0: framextopmargin = 2pt, alo@0: captionpos=b, alo@0: escapechar=~, alo@0: breaklines=true, alo@0: breakatwhitespace=true, alo@0: breakindent=20pt, alo@0: xleftmargin=5pt, alo@0: xrightmargin=5pt, alo@0: basewidth={0.55em,0.45em}, alo@0: %basewidth={0.50em,0.6em}, alo@0: fontadjust=true, alo@0: % lineskip={-1.5pt}, alo@0: % columns=[c]spaceflexible, %make the long artist URI fit alo@0: %float = h!, alo@0: } alo@0: alo@0: \renewcommand{\lstlistingname}{{\bf Listing}} alo@0: alo@0: alo@0: \lstdefinelanguage{ttl} { alo@0: morekeywords={a}, alo@0: sensitive=true, alo@0: % morecomment=[l][\color{ForestGreen}\bfseries\fontsize{10}{2}\selectfont]{\#\ }, alo@0: % moredelim=[s][\color{ForestGreen}\bfseries\fontsize{10}{2}\selectfont]{\#\ }{\ }, alo@0: % moredelim=[s][\color{NavyBlue}\bfseries\fontsize{10}{2}\selectfont]{@}{\ }, %prefix alo@0: % moredelim=[s][\color{OrangeRed}\bfseries\fontsize{10}{2}\selectfont]{<}{>}, %red URIs alo@0: morecomment=[l][\color{ForestGreen}\ttfamily\bfseries\selectfont]{\#\ }, alo@0: moredelim=[s][\color{NavyBlue}\ttfamily\bfseries\selectfont]{@}{\ }, %prefix alo@0: moredelim=[s][\color{OrangeRed}\ttfamily\bfseries\selectfont]{<}{>}, %red URIs alo@0: morestring=[b][\color{ForestGreen}]\", %green strings alo@0: morestring=[b]", alo@0: } alo@0: alo@0: \lstdefinestyle{ttl}{ alo@0: language=ttl, alo@0: basicstyle=\footnotesize\ttfamily\bfseries, alo@0: keywordstyle=\color{blue}\bfseries, alo@0: identifierstyle=, alo@0: commentstyle=\color{ForestGreen}\bfseries, alo@0: stringstyle=\color{BlueGreen}\bfseries, alo@0: showstringspaces=false, alo@0: emph={context},emphstyle=\color{BrickRed}\bfseries, alo@0: frame = lines, alo@0: framexbottommargin = 5pt, alo@0: framextopmargin = 5pt, alo@0: captionpos=b, alo@0: escapechar=~, alo@0: breaklines=true, alo@0: breakatwhitespace=true, alo@0: breakindent=20pt, alo@0: aboveskip = 15pt, alo@0: xleftmargin=5pt, alo@0: xrightmargin=5pt, alo@0: basewidth={0.55em,0.45em}, alo@0: % basewidth={0.50em,0.6em}, alo@0: fontadjust=true, alo@0: lineskip={-1.5pt}, alo@0: % columns=[c]spaceflexible, %make the long artist URI fit alo@0: % float = h!, alo@0: } alo@0: alo@0: \lstdefinelanguage{json} { alo@0: sensitive=true, alo@0: %morecomment=[l]{@}, alo@0: moredelim=[s][\color{ForestGreen}]{?}{\ }, %green variables alo@0: moredelim=[s][\color{OrangeRed}\fontsize{7}{2}\selectfont]{<}{>}, %red URIs alo@0: morestring=[b][\color{Gray}]\", alo@0: morestring=[b]", alo@0: } alo@0: alo@0: \lstdefinestyle{json}{ alo@0: language=json, alo@0: keywords={type,context}, alo@0: basicstyle=\fontsize{7}{8}\bfseries\ttfamily, alo@0: keywordstyle=\color{blue}\bfseries, alo@0: identifierstyle=, alo@0: commentstyle=\color{Gray}\bfseries, alo@0: stringstyle=\color{OliveGreen}\ttfamily, alo@0: showstringspaces=false, alo@0: emph={context},emphstyle=\color{BrickRed}\bfseries, alo@0: frame = lines, alo@0: framexbottommargin = 5pt, alo@0: framextopmargin = 5pt, alo@0: tabsize=4, alo@0: captionpos=b, alo@0: escapechar=~, alo@0: breaklines=false, alo@0: xleftmargin=5pt, alo@0: xrightmargin=5pt, alo@0: basewidth={0.50em,0.45em}, alo@0: %basewidth={0.50em,0.6em}, alo@0: fontadjust=true, alo@0: columns=[c]spaceflexible, %make the long artist URI fit alo@0: float = ht, alo@0: } alo@0: alo@0: \renewcommand{\labelitemi}{$\bullet$} alo@0: alo@0: \begin{document} alo@0: alo@0: \mainmatter alo@0: alo@0: \title{MusicWeb} alo@0: alo@0: \author{Alo Allik \and Mariano Mora-Mcginity \and Gy\"orgy Fazekas \and Mark Sandler } alo@0: % alo@0: alo@0: \institute{Queen Mary University of London, \\ alo@0: \email{\{a.allik, m.mora-mcginity, g.fazekas, mark.sandler\}@qmul.ac.uk}} alo@0: alo@0: \maketitle alo@0: alo@0: \begin{abstract} alo@0: alo@0: \keywords{Semantic Web, Linked Open Data, music metadata, semantic audio analysis, music information retrieval } alo@0: \end{abstract} alo@0: alo@0: \section{Introduction}\label{sec:introduction} alo@0: alo@0: \section{Background}\label{sec:background} alo@0: alo@0: \section{MusicWeb: Yago linking}\label{sec:data_collection} alo@0: alo@0: \section{MUSIC: linking by topic}\label{sec:ontology_model} alo@0: alo@0: \section{Content-based information retrieval}\label{sec:ontology_model} alo@0: alo@0: \section{Discussion}\label{sec:discussion} alo@0: alo@0: \section{Conclusions}\label{sec:conclusions} alo@0: alo@0: % alo@0: % ---- Bibliography ---- alo@0: % alo@0: \vspace{-1em}\begin{thebibliography}{5} alo@0: % alo@0: alo@0: \bibitem{FazekasRJS10_OMRAS2} alo@0: G.~Fazekas, Y.~Raimond, K.~Jakobson, and M.~Sandler. alo@0: \newblock An overview of semantic web activities in the {OMRAS2} project. alo@0: \newblock {\em Journal of New Music Research (JNMR)}, 39(4), 2010. alo@0: alo@0: \bibitem{Porter:ISMIR:15} alo@0: A.~Porter, D.~Bogdanov, R.~Kaye, R.~Tsukanov, and X.~Serra. alo@0: \newblock Acousticbrainz: a community platform for gathering music information alo@0: obtained from audio. alo@0: \newblock In {\em 16th International Society for Music Information Retrieval alo@0: (ISMIR) Conference}, 2015. alo@0: alo@0: \bibitem{DBLP:conf/ismir/RaimondASG07} alo@0: Y~Raimond, S.~Abdallah, M.~Sandler, and F.~Giasson. alo@0: \newblock The music ontology. alo@0: \newblock In {\em Proceedings of the 8th International Conference on Music alo@0: Information Retrieval, ISMIR 2007, Vienna, Austria, September 23-27}, 2007. alo@0: alo@0: \end{thebibliography} alo@0: alo@0: \end{document}