The project hosts an aesthetic and simple LaTeX style suitable for "preprint" publications such as arXiv, techrXhiv and biorXiv, etc. It is based on the nips_2018.sty style.
This styling maintains the esthetic of NeurIPS but adding and changing features to make it (IMO) even better and more suitable for preprints. The result looks fairly different from NeurIPS style so that readers won't get confused to think that the preprint was published in NeurIPS.
Because the NeurIPS styling is a comfortable single column format that is very esthetic and convenient for reading.
\usepackage{arxiv}
after \documentclass{article}
.See template.tex
The most convenient way to manage references is using an external BibTeX file and pointing to it from the main file.
However, this requires running the bibtex tool to "compile" the .bib
file and create .bbl
file containing "bibitems" that can be directly inserted in the main tex file.
However, unfortunately the arXiv Tex environment (Tex Live) do not do that.
So easiest way when submitting to arXiv is to create a single self-contained .tex file that contains the references.
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.
Below are the commands that should be run in the project folder:
$ latex template
$ bibtex template
template.bbl
file will be generated (make sure it is there)template.bbl
file content to template.tex
into the \begin{thebibliography}
command.\bibliography{references}
command in template.tex
.