added reviewed version of paper
This commit is contained in:
128
tex_review/bare_conf.tex
Normal file
128
tex_review/bare_conf.tex
Normal file
@@ -0,0 +1,128 @@
|
||||
\documentclass[journal,article,submit,moreauthors,pdftex,10pt,a4paper]{mdpi}
|
||||
|
||||
\firstpage{1}
|
||||
\makeatletter
|
||||
\setcounter{page}{\@firstpage}
|
||||
\makeatother
|
||||
\pubvolume{xx}
|
||||
\issuenum{1}
|
||||
\articlenumber{1}
|
||||
\pubyear{2018}
|
||||
\copyrightyear{2018}
|
||||
%\externaleditor{Academic Editor: name}
|
||||
\history{Received: date; Accepted: date; Published: date}
|
||||
|
||||
\usepackage{color, colortbl}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{subcaption}
|
||||
|
||||
\interdisplaylinepenalty=2500
|
||||
|
||||
\usepackage{array}
|
||||
\usepackage{mdwmath}
|
||||
\usepackage{mdwtab}
|
||||
\usepackage{eqparbox}
|
||||
\usepackage{epstopdf}
|
||||
\usepackage{siunitx}
|
||||
\usepackage{array}
|
||||
\usepackage{multirow}
|
||||
|
||||
%added for comments to reviewers
|
||||
\usepackage[draft]{todonotes} %the orange todos
|
||||
\usepackage{xparse}
|
||||
\usepackage{tikz}
|
||||
\usetikzlibrary{calc}
|
||||
|
||||
\DeclareDocumentCommand{\hcancel}{mO{0pt}O{0pt}O{0pt}O{0pt}}{%
|
||||
\tikz[baseline=(tocancel.base)]{
|
||||
\node[inner sep=0pt,outer sep=0pt] (tocancel) {#1};
|
||||
\draw[gray] ($(tocancel.south west)+(#2,#3)$) -- ($(tocancel.north east)+(#4,#5)$);
|
||||
}%
|
||||
}%
|
||||
|
||||
%for beautiful decision trees
|
||||
\usetikzlibrary{shapes,arrows,fit,calc,positioning}
|
||||
\tikzset{startstop/.style={draw, circle, fill, scale=0.3}}
|
||||
\tikzset{box/.style={draw, diamond, aspect=2.8, thick, text centered, minimum height=0.5cm, minimum width=1cm}}
|
||||
\tikzset{activity/.style={draw, rectangle, thick, text centered, minimum height=0.5cm, minimum width=1cm}}
|
||||
\tikzset{line/.style={draw, thick, -latex'}}
|
||||
|
||||
%\updates{yes} % If there is an update available, un-comment this line
|
||||
|
||||
\Title{Smartphone-based Indoor Localization within a 13th Century Historic Building}
|
||||
|
||||
% Author Orchid ID: enter ID or remove command
|
||||
\newcommand{\orcidauthorA}{0000-0002-4698-8232} % Add \orcidA{} behind the author's name
|
||||
\newcommand{\orcidauthorB}{0000-0002-8249-8783} % Add \orcidB{} behind the author's name
|
||||
\newcommand{\orcidauthorC}{0000-0001-7213-1024} % Add \orcidC{} behind the author's name
|
||||
|
||||
% Authors, for the paper (add full first names)
|
||||
\Author{Toni Fetzer$^{1,*}$\orcidB{}, Frank Ebner$^{1}$\orcidA{}, Markus Bullmann$^{1}$\orcidC{}, Frank Deinzer$^{1}$ and Marcin Grzegorzek$^{2}$}
|
||||
|
||||
% Authors, for metadata in PDF
|
||||
\AuthorNames{Toni Fetzer, Frank Ebner, Markus Bullmann, Frank Deinzer and Marcin Grzegorzek}
|
||||
|
||||
\keyword{indoor localization; Wi-Fi; PDR; sensor fusion; smartphone; particle filter; sample impoverishment; estimation; historic buildings; navigation mesh}
|
||||
|
||||
% Affiliations / Addresses (Add [1] after \address if there is only one affiliation.)
|
||||
\address{%
|
||||
$^{1}$ \quad University of Applied Sciences W\"urzburg-Schweinfurt - Faculty of Computer Science and Business Information Systems; \textit{firstname.surname}@fhws.de\\
|
||||
$^{2}$ \quad University of Siegen - Pattern Recognition Group; marcin.grzegorzek@uni-siegen.de}
|
||||
|
||||
% Contact information of the corresponding author
|
||||
\corres{Correspondence: toni.fetzer@fhws.de}
|
||||
|
||||
|
||||
% missing math operators
|
||||
\DeclareMathOperator*{\argmin}{arg\,min}
|
||||
\DeclareMathOperator*{\argmax}{arg\,max}
|
||||
|
||||
% vector and matrix typesetting
|
||||
\renewcommand{\vec}[1]{\boldsymbol{#1}} % italic and greek symbols
|
||||
\newcommand{\mat}[1]{\vec{#1}} % the same as vec
|
||||
|
||||
% gfx include folder
|
||||
%\graphicspath{{gfx/}}
|
||||
|
||||
% input stuff
|
||||
\input{misc/keywords}
|
||||
\input{misc/functions}
|
||||
|
||||
% footnote hack for thanks
|
||||
\newcommand{\blfootnote}[1]{%
|
||||
\begingroup
|
||||
\renewcommand\thefootnote{}\footnote{#1}%
|
||||
\addtocounter{footnote}{-1}%
|
||||
\endgroup
|
||||
}
|
||||
|
||||
|
||||
\graphicspath{{gfx/}{gfx/groundTruth/}{gfx/wifiOptGlobalFloor/}{gfx/errorOverTimeWalk3/}{gfx/estimationPath2/}{gfx/optimization/}{gfx/optimization/side/}{gfx/transEval/}}
|
||||
|
||||
\input{chapters/abstract}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
|
||||
\input{chapters/introduction}
|
||||
|
||||
\input{chapters/relatedwork}
|
||||
|
||||
\input{chapters/system}
|
||||
|
||||
\input{chapters/transition}
|
||||
|
||||
\input{chapters/eval}
|
||||
|
||||
\input{chapters/misc}
|
||||
|
||||
\input{chapters/experiments}
|
||||
|
||||
\input{chapters/conclusion}
|
||||
|
||||
\externalbibliography{yes}
|
||||
\bibliography{egbib}
|
||||
|
||||
\end{document}
|
||||
|
||||
Reference in New Issue
Block a user