├── .gitignore ├── License.txt ├── README.md ├── arxiv.sty ├── orcid.pdf ├── references.bib ├── template.pdf └── template.tex /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | .*.lb 14 | 15 | ## Intermediate documents: 16 | *.dvi 17 | *.xdv 18 | *-converted-to.* 19 | # these rules might exclude image files for figures etc. 20 | # *.ps 21 | # *.eps 22 | # *.pdf 23 | 24 | ## Generated if empty string is given at "Please type another file name for output:" 25 | .pdf 26 | 27 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 28 | *.bbl 29 | *.bcf 30 | *.blg 31 | *-blx.aux 32 | *-blx.bib 33 | *.run.xml 34 | 35 | ## Build tool auxiliary files: 36 | *.fdb_latexmk 37 | *.synctex 38 | *.synctex(busy) 39 | *.synctex.gz 40 | *.synctex.gz(busy) 41 | *.pdfsync 42 | 43 | ## Auxiliary and intermediate files from other packages: 44 | # algorithms 45 | *.alg 46 | *.loa 47 | 48 | # achemso 49 | acs-*.bib 50 | 51 | # amsthm 52 | *.thm 53 | 54 | # beamer 55 | *.nav 56 | *.pre 57 | *.snm 58 | *.vrb 59 | 60 | # changes 61 | *.soc 62 | 63 | # cprotect 64 | *.cpt 65 | 66 | # elsarticle (documentclass of Elsevier journals) 67 | *.spl 68 | 69 | # endnotes 70 | *.ent 71 | 72 | # fixme 73 | *.lox 74 | 75 | # feynmf/feynmp 76 | *.mf 77 | *.mp 78 | *.t[1-9] 79 | *.t[1-9][0-9] 80 | *.tfm 81 | 82 | #(r)(e)ledmac/(r)(e)ledpar 83 | *.end 84 | *.?end 85 | *.[1-9] 86 | *.[1-9][0-9] 87 | *.[1-9][0-9][0-9] 88 | *.[1-9]R 89 | *.[1-9][0-9]R 90 | *.[1-9][0-9][0-9]R 91 | *.eledsec[1-9] 92 | *.eledsec[1-9]R 93 | *.eledsec[1-9][0-9] 94 | *.eledsec[1-9][0-9]R 95 | *.eledsec[1-9][0-9][0-9] 96 | *.eledsec[1-9][0-9][0-9]R 97 | 98 | # glossaries 99 | *.acn 100 | *.acr 101 | *.glg 102 | *.glo 103 | *.gls 104 | *.glsdefs 105 | 106 | # gnuplottex 107 | *-gnuplottex-* 108 | 109 | # gregoriotex 110 | *.gaux 111 | *.gtex 112 | 113 | # htlatex 114 | *.4ct 115 | *.4tc 116 | *.idv 117 | *.lg 118 | *.trc 119 | *.xref 120 | 121 | # hyperref 122 | *.brf 123 | 124 | # knitr 125 | *-concordance.tex 126 | # TODO Comment the next line if you want to keep your tikz graphics files 127 | *.tikz 128 | *-tikzDictionary 129 | 130 | # listings 131 | *.lol 132 | 133 | # makeidx 134 | *.idx 135 | *.ilg 136 | *.ind 137 | *.ist 138 | 139 | # minitoc 140 | *.maf 141 | *.mlf 142 | *.mlt 143 | *.mtc[0-9]* 144 | *.slf[0-9]* 145 | *.slt[0-9]* 146 | *.stc[0-9]* 147 | 148 | # minted 149 | _minted* 150 | *.pyg 151 | 152 | # morewrites 153 | *.mw 154 | 155 | # nomencl 156 | *.nlg 157 | *.nlo 158 | *.nls 159 | 160 | # pax 161 | *.pax 162 | 163 | # pdfpcnotes 164 | *.pdfpc 165 | 166 | # sagetex 167 | *.sagetex.sage 168 | *.sagetex.py 169 | *.sagetex.scmd 170 | 171 | # scrwfile 172 | *.wrt 173 | 174 | # sympy 175 | *.sout 176 | *.sympy 177 | sympy-plots-for-*.tex/ 178 | 179 | # pdfcomment 180 | *.upa 181 | *.upb 182 | 183 | # pythontex 184 | *.pytxcode 185 | pythontex-files-*/ 186 | 187 | # thmtools 188 | *.loe 189 | 190 | # TikZ & PGF 191 | *.dpth 192 | *.md5 193 | *.auxlock 194 | 195 | # todonotes 196 | *.tdo 197 | 198 | # easy-todo 199 | *.lod 200 | 201 | # xmpincl 202 | *.xmpi 203 | 204 | # xindy 205 | *.xdy 206 | 207 | # xypic precompiled matrices 208 | *.xyc 209 | 210 | # endfloat 211 | *.ttt 212 | *.fff 213 | 214 | # Latexian 215 | TSWLatexianTemp* 216 | 217 | ## Editors: 218 | # WinEdt 219 | *.bak 220 | *.sav 221 | 222 | # Texpad 223 | .texpadtmp 224 | 225 | # Kile 226 | *.backup 227 | 228 | # KBibTeX 229 | *~[0-9]* 230 | 231 | # auto folder when using emacs and auctex 232 | ./auto/* 233 | *.el 234 | 235 | # expex forward references with \gathertags 236 | *-tags.tex 237 | 238 | # standalone packages 239 | *.sta 240 | 241 | # generated if using elsarticle.cls 242 | *.spl 243 | -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 George Kour 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | ## Description: 3 | 4 | The project hosts an aesthetic and simple LaTeX style suitable for "preprint" publications such as arXiv, techrXhiv and biorXiv, etc. 5 | It is based on the [**nips_2018.sty**](https://media.nips.cc/Conferences/NIPS2018/Styles/nips_2018.sty) style. 6 | 7 | This styling maintains the esthetic of NeurIPS but adding and changing features to make it (IMO) even better and more suitable for preprints. 8 | The result looks fairly different from NeurIPS style so that readers won't get confused to think that the preprint was published in NeurIPS. 9 | 10 | ### Why NeurIPS? 11 | Because the NeurIPS styling is a comfortable single column format that is very esthetic and convenient for reading. 12 | 13 | ## Usage: 14 | 1. Use Document class **article**. 15 | 2. Copy **arxiv.sty** to the folder containing your tex file. 16 | 3. add `\usepackage{arxiv}` after `\documentclass{article}`. 17 | 4. The only packages used in the style file are **geometry** and **fancyheader**. Do not reimport them. 18 | 19 | See **template.tex** 20 | 21 | ## Project files: 22 | 1. **arxiv.sty** - the style file. 23 | 2. **template.tex** - a sample template that uses the **arxiv style**. 24 | 3. **references.bib** - the bibliography source file for template.tex. 25 | 4. **template.pdf** - a sample output of the template file that demonstrated the design provided by the arxiv style. 26 | 27 | 28 | ## Handling References when submitting to arXiv.org 29 | The most convenient way to manage references is using an external BibTeX file and pointing to it from the main file. 30 | However, this requires running the [bibtex](http://www.bibtex.org/) tool to "compile" the `.bib` file and create `.bbl` file containing "bibitems" that can be directly inserted in the main tex file. 31 | However, unfortunately the arXiv Tex environment ([Tex Live](https://www.tug.org/texlive/)) do not do that. 32 | So easiest way when submitting to arXiv is to create a single self-contained .tex file that contains the references. 33 | This can be done by running the BibTeX command on your machine and insert the content of the generated `.bbl` file into the `.tex` file and commenting out the `\bibliography{references}` that point to the external references file. 34 | 35 | Below are the commands that should be run in the project folder: 36 | 1. Run `$ latex template` 37 | 2. Run `$ bibtex template` 38 | 3. A `template.bbl` file will be generated (make sure it is there) 39 | 4. Copy the `template.bbl` file content to `template.tex` into the `\begin{thebibliography}` command. 40 | 5. Comment out the `\bibliography{references}` command in `template.tex`. 41 | 6. You ready to submit to arXiv.org. 42 | 43 | 44 | ## General Notes: 45 | 1. For help, comments, praises, bug reporting or change requests, you can contact the author at: kourgeorge/at/gmail.com. 46 | 2. You can use, redistribute and do whatever with this project, however, the author takes no responsibility on whatever usage of this project. 47 | 3. If you start another project based on this project, it would be nice to mention/link to this project. 48 | 4. You are very welcome to contribute to this project. 49 | 5. A good looking 2 column template can be found in https://github.com/brenhinkeller/preprint-template.tex. 50 | -------------------------------------------------------------------------------- /arxiv.sty: -------------------------------------------------------------------------------- 1 | \NeedsTeXFormat{LaTeX2e} 2 | 3 | \ProcessOptions\relax 4 | 5 | % fonts 6 | \renewcommand{\rmdefault}{ptm} 7 | \renewcommand{\sfdefault}{phv} 8 | 9 | % set page geometry 10 | \usepackage[verbose=true,letterpaper]{geometry} 11 | \AtBeginDocument{ 12 | \newgeometry{ 13 | textheight=9in, 14 | textwidth=6.5in, 15 | top=1in, 16 | headheight=14pt, 17 | headsep=25pt, 18 | footskip=30pt 19 | } 20 | } 21 | 22 | \widowpenalty=10000 23 | \clubpenalty=10000 24 | \flushbottom 25 | \sloppy 26 | 27 | 28 | 29 | \newcommand{\headeright}{A Preprint} 30 | \newcommand{\undertitle}{A Preprint} 31 | \newcommand{\shorttitle}{\@title} 32 | 33 | \usepackage{fancyhdr} 34 | \fancyhf{} 35 | \pagestyle{fancy} 36 | \renewcommand{\headrulewidth}{0.4pt} 37 | \fancyheadoffset{0pt} 38 | \rhead{\scshape \footnotesize \headeright} 39 | \chead{\shorttitle} 40 | \cfoot{\thepage} 41 | 42 | 43 | %Handling Keywords 44 | \def\keywordname{{\bfseries \emph{Keywords}}}% 45 | \def\keywords#1{\par\addvspace\medskipamount{\rightskip=0pt plus1cm 46 | \def\and{\ifhmode\unskip\nobreak\fi\ $\cdot$ 47 | }\noindent\keywordname\enspace\ignorespaces#1\par}} 48 | 49 | % font sizes with reduced leading 50 | \renewcommand{\normalsize}{% 51 | \@setfontsize\normalsize\@xpt\@xipt 52 | \abovedisplayskip 7\p@ \@plus 2\p@ \@minus 5\p@ 53 | \abovedisplayshortskip \z@ \@plus 3\p@ 54 | \belowdisplayskip \abovedisplayskip 55 | \belowdisplayshortskip 4\p@ \@plus 3\p@ \@minus 3\p@ 56 | } 57 | \normalsize 58 | \renewcommand{\small}{% 59 | \@setfontsize\small\@ixpt\@xpt 60 | \abovedisplayskip 6\p@ \@plus 1.5\p@ \@minus 4\p@ 61 | \abovedisplayshortskip \z@ \@plus 2\p@ 62 | \belowdisplayskip \abovedisplayskip 63 | \belowdisplayshortskip 3\p@ \@plus 2\p@ \@minus 2\p@ 64 | } 65 | \renewcommand{\footnotesize}{\@setfontsize\footnotesize\@ixpt\@xpt} 66 | \renewcommand{\scriptsize}{\@setfontsize\scriptsize\@viipt\@viiipt} 67 | \renewcommand{\tiny}{\@setfontsize\tiny\@vipt\@viipt} 68 | \renewcommand{\large}{\@setfontsize\large\@xiipt{14}} 69 | \renewcommand{\Large}{\@setfontsize\Large\@xivpt{16}} 70 | \renewcommand{\LARGE}{\@setfontsize\LARGE\@xviipt{20}} 71 | \renewcommand{\huge}{\@setfontsize\huge\@xxpt{23}} 72 | \renewcommand{\Huge}{\@setfontsize\Huge\@xxvpt{28}} 73 | 74 | % sections with less space 75 | \providecommand{\section}{} 76 | \renewcommand{\section}{% 77 | \@startsection{section}{1}{\z@}% 78 | {-2.0ex \@plus -0.5ex \@minus -0.2ex}% 79 | { 1.5ex \@plus 0.3ex \@minus 0.2ex}% 80 | {\large\bf\raggedright}% 81 | } 82 | \providecommand{\subsection}{} 83 | \renewcommand{\subsection}{% 84 | \@startsection{subsection}{2}{\z@}% 85 | {-1.8ex \@plus -0.5ex \@minus -0.2ex}% 86 | { 0.8ex \@plus 0.2ex}% 87 | {\normalsize\bf\raggedright}% 88 | } 89 | \providecommand{\subsubsection}{} 90 | \renewcommand{\subsubsection}{% 91 | \@startsection{subsubsection}{3}{\z@}% 92 | {-1.5ex \@plus -0.5ex \@minus -0.2ex}% 93 | { 0.5ex \@plus 0.2ex}% 94 | {\normalsize\bf\raggedright}% 95 | } 96 | \providecommand{\paragraph}{} 97 | \renewcommand{\paragraph}{% 98 | \@startsection{paragraph}{4}{\z@}% 99 | {1.5ex \@plus 0.5ex \@minus 0.2ex}% 100 | {-1em}% 101 | {\normalsize\bf}% 102 | } 103 | \providecommand{\subparagraph}{} 104 | \renewcommand{\subparagraph}{% 105 | \@startsection{subparagraph}{5}{\z@}% 106 | {1.5ex \@plus 0.5ex \@minus 0.2ex}% 107 | {-1em}% 108 | {\normalsize\bf}% 109 | } 110 | \providecommand{\subsubsubsection}{} 111 | \renewcommand{\subsubsubsection}{% 112 | \vskip5pt{\noindent\normalsize\rm\raggedright}% 113 | } 114 | 115 | % float placement 116 | \renewcommand{\topfraction }{0.85} 117 | \renewcommand{\bottomfraction }{0.4} 118 | \renewcommand{\textfraction }{0.1} 119 | \renewcommand{\floatpagefraction}{0.7} 120 | 121 | \newlength{\@abovecaptionskip}\setlength{\@abovecaptionskip}{7\p@} 122 | \newlength{\@belowcaptionskip}\setlength{\@belowcaptionskip}{\z@} 123 | 124 | \setlength{\abovecaptionskip}{\@abovecaptionskip} 125 | \setlength{\belowcaptionskip}{\@belowcaptionskip} 126 | 127 | % swap above/belowcaptionskip lengths for tables 128 | \renewenvironment{table} 129 | {\setlength{\abovecaptionskip}{\@belowcaptionskip}% 130 | \setlength{\belowcaptionskip}{\@abovecaptionskip}% 131 | \@float{table}} 132 | {\end@float} 133 | 134 | % footnote formatting 135 | \setlength{\footnotesep }{6.65\p@} 136 | \setlength{\skip\footins}{9\p@ \@plus 4\p@ \@minus 2\p@} 137 | \renewcommand{\footnoterule}{\kern-3\p@ \hrule width 12pc \kern 2.6\p@} 138 | \setcounter{footnote}{0} 139 | 140 | % paragraph formatting 141 | \setlength{\parindent}{\z@} 142 | \setlength{\parskip }{5.5\p@} 143 | 144 | % list formatting 145 | \setlength{\topsep }{4\p@ \@plus 1\p@ \@minus 2\p@} 146 | \setlength{\partopsep }{1\p@ \@plus 0.5\p@ \@minus 0.5\p@} 147 | \setlength{\itemsep }{2\p@ \@plus 1\p@ \@minus 0.5\p@} 148 | \setlength{\parsep }{2\p@ \@plus 1\p@ \@minus 0.5\p@} 149 | \setlength{\leftmargin }{3pc} 150 | \setlength{\leftmargini }{\leftmargin} 151 | \setlength{\leftmarginii }{2em} 152 | \setlength{\leftmarginiii}{1.5em} 153 | \setlength{\leftmarginiv }{1.0em} 154 | \setlength{\leftmarginv }{0.5em} 155 | \def\@listi {\leftmargin\leftmargini} 156 | \def\@listii {\leftmargin\leftmarginii 157 | \labelwidth\leftmarginii 158 | \advance\labelwidth-\labelsep 159 | \topsep 2\p@ \@plus 1\p@ \@minus 0.5\p@ 160 | \parsep 1\p@ \@plus 0.5\p@ \@minus 0.5\p@ 161 | \itemsep \parsep} 162 | \def\@listiii{\leftmargin\leftmarginiii 163 | \labelwidth\leftmarginiii 164 | \advance\labelwidth-\labelsep 165 | \topsep 1\p@ \@plus 0.5\p@ \@minus 0.5\p@ 166 | \parsep \z@ 167 | \partopsep 0.5\p@ \@plus 0\p@ \@minus 0.5\p@ 168 | \itemsep \topsep} 169 | \def\@listiv {\leftmargin\leftmarginiv 170 | \labelwidth\leftmarginiv 171 | \advance\labelwidth-\labelsep} 172 | \def\@listv {\leftmargin\leftmarginv 173 | \labelwidth\leftmarginv 174 | \advance\labelwidth-\labelsep} 175 | \def\@listvi {\leftmargin\leftmarginvi 176 | \labelwidth\leftmarginvi 177 | \advance\labelwidth-\labelsep} 178 | 179 | % create title 180 | \providecommand{\maketitle}{} 181 | \renewcommand{\maketitle}{% 182 | \par 183 | \begingroup 184 | \renewcommand{\thefootnote}{\fnsymbol{footnote}} 185 | % for perfect author name centering 186 | %\renewcommand{\@makefnmark}{\hbox to \z@{$^{\@thefnmark}$\hss}} 187 | % The footnote-mark was overlapping the footnote-text, 188 | % added the following to fix this problem (MK) 189 | \long\def\@makefntext##1{% 190 | \parindent 1em\noindent 191 | \hbox to 1.8em{\hss $\m@th ^{\@thefnmark}$}##1 192 | } 193 | \thispagestyle{empty} 194 | \@maketitle 195 | \@thanks 196 | %\@notice 197 | \endgroup 198 | \let\maketitle\relax 199 | \let\thanks\relax 200 | } 201 | 202 | % rules for title box at top of first page 203 | \newcommand{\@toptitlebar}{ 204 | \hrule height 2\p@ 205 | \vskip 0.25in 206 | \vskip -\parskip% 207 | } 208 | \newcommand{\@bottomtitlebar}{ 209 | \vskip 0.29in 210 | \vskip -\parskip 211 | \hrule height 2\p@ 212 | \vskip 0.09in% 213 | } 214 | 215 | % create title (includes both anonymized and non-anonymized versions) 216 | \providecommand{\@maketitle}{} 217 | \renewcommand{\@maketitle}{% 218 | \vbox{% 219 | \hsize\textwidth 220 | \linewidth\hsize 221 | \vskip 0.1in 222 | \@toptitlebar 223 | \centering 224 | {\LARGE\sc \@title\par} 225 | \@bottomtitlebar 226 | \textsc{\undertitle}\\ 227 | \vskip 0.1in 228 | \def\And{% 229 | \end{tabular}\hfil\linebreak[0]\hfil% 230 | \begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces% 231 | } 232 | \def\AND{% 233 | \end{tabular}\hfil\linebreak[4]\hfil% 234 | \begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\ignorespaces% 235 | } 236 | \begin{tabular}[t]{c}\bf\rule{\z@}{24\p@}\@author\end{tabular}% 237 | \vskip 0.4in \@minus 0.1in \center{\@date} \vskip 0.2in 238 | } 239 | } 240 | 241 | % add conference notice to bottom of first page 242 | \newcommand{\ftype@noticebox}{8} 243 | \newcommand{\@notice}{% 244 | % give a bit of extra room back to authors on first page 245 | \enlargethispage{2\baselineskip}% 246 | \@float{noticebox}[b]% 247 | \footnotesize\@noticestring% 248 | \end@float% 249 | } 250 | 251 | % abstract styling 252 | \renewenvironment{abstract} 253 | { 254 | \centerline 255 | {\large \bfseries \scshape Abstract} 256 | \begin{quote} 257 | } 258 | { 259 | \end{quote} 260 | } 261 | 262 | \endinput 263 | -------------------------------------------------------------------------------- /orcid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kourgeorge/arxiv-style/920514696f6e7270cab0558fd97c44515c63b4c4/orcid.pdf -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{kour2014real, 2 | title={Real-time segmentation of on-line handwritten arabic script}, 3 | author={Kour, George and Saabne, Raid}, 4 | booktitle={Frontiers in Handwriting Recognition (ICFHR), 2014 14th International Conference on}, 5 | pages={417--422}, 6 | year={2014}, 7 | organization={IEEE} 8 | } 9 | 10 | @inproceedings{kour2014fast, 11 | title={Fast classification of handwritten on-line Arabic characters}, 12 | author={Kour, George and Saabne, Raid}, 13 | booktitle={Soft Computing and Pattern Recognition (SoCPaR), 2014 6th International Conference of}, 14 | pages={312--318}, 15 | year={2014}, 16 | organization={IEEE}, 17 | doi={10.1109/SOCPAR.2014.7008025} 18 | } 19 | 20 | @inproceedings{keshet2016prediction, 21 | title={Prediction-Based, Prioritized Market-Share Insight Extraction}, 22 | author={Keshet, Renato and Maor, Alina and Kour, George}, 23 | booktitle={Advanced Data Mining and Applications: 12th International Conference, ADMA 2016, Gold Coast, QLD, Australia, December 12-15, 2016, Proceedings 12}, 24 | pages={81--94}, 25 | year={2016}, 26 | organization={Springer} 27 | } 28 | -------------------------------------------------------------------------------- /template.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kourgeorge/arxiv-style/920514696f6e7270cab0558fd97c44515c63b4c4/template.pdf -------------------------------------------------------------------------------- /template.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | 3 | \usepackage{arxiv} 4 | 5 | \usepackage[utf8]{inputenc} % allow utf-8 input 6 | \usepackage[T1]{fontenc} % use 8-bit T1 fonts 7 | \usepackage{hyperref} % hyperlinks 8 | \usepackage{url} % simple URL typesetting 9 | \usepackage{booktabs} % professional-quality tables 10 | \usepackage{amsfonts} % blackboard math symbols 11 | \usepackage{nicefrac} % compact symbols for 1/2, etc. 12 | \usepackage{microtype} % microtypography 13 | \usepackage{cleveref} % smart cross-referencing 14 | \usepackage{lipsum} % Can be removed after putting your text content 15 | \usepackage{graphicx} 16 | \usepackage{natbib} 17 | \usepackage{doi} 18 | 19 | \title{A template for the \emph{arxiv} style} 20 | 21 | % Here you can change the date presented in the paper title 22 | %\date{September 9, 1985} 23 | % Or remove it 24 | %\date{} 25 | 26 | \newif\ifuniqueAffiliation 27 | % Comment to use multiple affiliations variant of author block 28 | \uniqueAffiliationtrue 29 | 30 | \ifuniqueAffiliation % Standard variant of author block 31 | \author{ \href{https://orcid.org/0000-0000-0000-0000}{\includegraphics[scale=0.06]{orcid.pdf}\hspace{1mm}David S.~Hippocampus}\thanks{Use footnote for providing further 32 | information about author (webpage, alternative 33 | address)---\emph{not} for acknowledging funding agencies.} \\ 34 | Department of Computer Science\\ 35 | Cranberry-Lemon University\\ 36 | Pittsburgh, PA 15213 \\ 37 | \texttt{hippo@cs.cranberry-lemon.edu} \\ 38 | %% examples of more authors 39 | \And 40 | \href{https://orcid.org/0000-0000-0000-0000}{\includegraphics[scale=0.06]{orcid.pdf}\hspace{1mm}Elias D.~Striatum} \\ 41 | Department of Electrical Engineering\\ 42 | Mount-Sheikh University\\ 43 | Santa Narimana, Levand \\ 44 | \texttt{stariate@ee.mount-sheikh.edu} \\ 45 | %% \AND 46 | %% Coauthor \\ 47 | %% Affiliation \\ 48 | %% Address \\ 49 | %% \texttt{email} \\ 50 | %% \And 51 | %% Coauthor \\ 52 | %% Affiliation \\ 53 | %% Address \\ 54 | %% \texttt{email} \\ 55 | %% \And 56 | %% Coauthor \\ 57 | %% Affiliation \\ 58 | %% Address \\ 59 | %% \texttt{email} \\ 60 | } 61 | \else 62 | % Multiple affiliations variant of author block 63 | \usepackage{authblk} 64 | \renewcommand\Authfont{\bfseries} 65 | \setlength{\affilsep}{0em} 66 | % box is needed for correct spacing with authblk 67 | \newbox{\orcid}\sbox{\orcid}{\includegraphics[scale=0.06]{orcid.pdf}} 68 | \author[1]{% 69 | \href{https://orcid.org/0000-0000-0000-0000}{\usebox{\orcid}\hspace{1mm}David S.~Hippocampus\thanks{\texttt{hippo@cs.cranberry-lemon.edu}}}% 70 | } 71 | \author[1,2]{% 72 | \href{https://orcid.org/0000-0000-0000-0000}{\usebox{\orcid}\hspace{1mm}Elias D.~Striatum\thanks{\texttt{stariate@ee.mount-sheikh.edu}}}% 73 | } 74 | \affil[1]{Department of Computer Science, Cranberry-Lemon University, Pittsburgh, PA 15213} 75 | \affil[2]{Department of Electrical Engineering, Mount-Sheikh University, Santa Narimana, Levand} 76 | \fi 77 | 78 | % Uncomment to override the `A preprint' in the header 79 | %\renewcommand{\headeright}{Technical Report} 80 | %\renewcommand{\undertitle}{Technical Report} 81 | \renewcommand{\shorttitle}{\textit{arXiv} Template} 82 | 83 | %%% Add PDF metadata to help others organize their library 84 | %%% Once the PDF is generated, you can check the metadata with 85 | %%% $ pdfinfo template.pdf 86 | \hypersetup{ 87 | pdftitle={A template for the arxiv style}, 88 | pdfsubject={q-bio.NC, q-bio.QM}, 89 | pdfauthor={David S.~Hippocampus, Elias D.~Striatum}, 90 | pdfkeywords={First keyword, Second keyword, More}, 91 | } 92 | 93 | \begin{document} 94 | \maketitle 95 | 96 | \begin{abstract} 97 | \lipsum[1] 98 | \end{abstract} 99 | 100 | 101 | % keywords can be removed 102 | \keywords{First keyword \and Second keyword \and More} 103 | 104 | 105 | \section{Introduction} 106 | \lipsum[2] 107 | \lipsum[3] 108 | 109 | 110 | \section{Headings: first level} 111 | \label{sec:headings} 112 | 113 | \lipsum[4] See Section \ref{sec:headings}. 114 | 115 | \subsection{Headings: second level} 116 | \lipsum[5] 117 | \begin{equation} 118 | \xi _{ij}(t)=P(x_{t}=i,x_{t+1}=j|y,v,w;\theta)= {\frac {\alpha _{i}(t)a^{w_t}_{ij}\beta _{j}(t+1)b^{v_{t+1}}_{j}(y_{t+1})}{\sum _{i=1}^{N} \sum _{j=1}^{N} \alpha _{i}(t)a^{w_t}_{ij}\beta _{j}(t+1)b^{v_{t+1}}_{j}(y_{t+1})}} 119 | \end{equation} 120 | 121 | \subsubsection{Headings: third level} 122 | \lipsum[6] 123 | 124 | \paragraph{Paragraph} 125 | \lipsum[7] 126 | 127 | 128 | 129 | \section{Examples of citations, figures, tables, references} 130 | \label{sec:others} 131 | 132 | \subsection{Citations} 133 | Citations use \verb+natbib+. The documentation may be found at 134 | \begin{center} 135 | \url{http://mirrors.ctan.org/macros/latex/contrib/natbib/natnotes.pdf} 136 | \end{center} 137 | 138 | Here is an example usage of the two main commands (\verb+citet+ and \verb+citep+): Some people thought a thing \citep{kour2014real, keshet2016prediction} but other people thought something else \citep{kour2014fast}. Many people have speculated that if we knew exactly why \citet{kour2014fast} thought this\dots 139 | 140 | \subsection{Figures} 141 | \lipsum[10] 142 | See Figure \ref{fig:fig1}. Here is how you add footnotes. \footnote{Sample of the first footnote.} 143 | \lipsum[11] 144 | 145 | \begin{figure} 146 | \centering 147 | \fbox{\rule[-.5cm]{4cm}{4cm} \rule[-.5cm]{4cm}{0cm}} 148 | \caption{Sample figure caption.} 149 | \label{fig:fig1} 150 | \end{figure} 151 | 152 | \subsection{Tables} 153 | See awesome Table~\ref{tab:table}. 154 | 155 | The documentation for \verb+booktabs+ (`Publication quality tables in LaTeX') is available from: 156 | \begin{center} 157 | \url{https://www.ctan.org/pkg/booktabs} 158 | \end{center} 159 | 160 | 161 | \begin{table} 162 | \caption{Sample table title} 163 | \centering 164 | \begin{tabular}{lll} 165 | \toprule 166 | \multicolumn{2}{c}{Part} \\ 167 | \cmidrule(r){1-2} 168 | Name & Description & Size ($\mu$m) \\ 169 | \midrule 170 | Dendrite & Input terminal & $\sim$100 \\ 171 | Axon & Output terminal & $\sim$10 \\ 172 | Soma & Cell body & up to $10^6$ \\ 173 | \bottomrule 174 | \end{tabular} 175 | \label{tab:table} 176 | \end{table} 177 | 178 | \subsection{Lists} 179 | \begin{itemize} 180 | \item Lorem ipsum dolor sit amet 181 | \item consectetur adipiscing elit. 182 | \item Aliquam dignissim blandit est, in dictum tortor gravida eget. In ac rutrum magna. 183 | \end{itemize} 184 | 185 | 186 | \bibliographystyle{unsrtnat} 187 | \bibliography{references} %%% Uncomment this line and comment out the ``thebibliography'' section below to use the external .bib file (using bibtex) . 188 | 189 | 190 | %%% Uncomment this section and comment out the \bibliography{references} line above to use inline references. 191 | % \begin{thebibliography}{1} 192 | 193 | % \bibitem{kour2014real} 194 | % George Kour and Raid Saabne. 195 | % \newblock Real-time segmentation of on-line handwritten arabic script. 196 | % \newblock In {\em Frontiers in Handwriting Recognition (ICFHR), 2014 14th 197 | % International Conference on}, pages 417--422. IEEE, 2014. 198 | 199 | % \bibitem{kour2014fast} 200 | % George Kour and Raid Saabne. 201 | % \newblock Fast classification of handwritten on-line arabic characters. 202 | % \newblock In {\em Soft Computing and Pattern Recognition (SoCPaR), 2014 6th 203 | % International Conference of}, pages 312--318. IEEE, 2014. 204 | 205 | % \bibitem{keshet2016prediction} 206 | % Keshet, Renato, Alina Maor, and George Kour. 207 | % \newblock Prediction-Based, Prioritized Market-Share Insight Extraction. 208 | % \newblock In {\em Advanced Data Mining and Applications (ADMA), 2016 12th International 209 | % Conference of}, pages 81--94,2016. 210 | 211 | % \end{thebibliography} 212 | 213 | 214 | \end{document} 215 | --------------------------------------------------------------------------------