Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dennishnf/latex-paper-format-neurips2019
This is an example of a paper in LaTeX for the conference NeurIPS 2019.
https://github.com/dennishnf/latex-paper-format-neurips2019
bibtex conference conference-paper latex latex-document latex-template neurips neurips-2019 paper
Last synced: 3 months ago
JSON representation
This is an example of a paper in LaTeX for the conference NeurIPS 2019.
- Host: GitHub
- URL: https://github.com/dennishnf/latex-paper-format-neurips2019
- Owner: dennishnf
- License: gpl-3.0
- Created: 2019-10-19T20:19:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T05:00:35.000Z (over 4 years ago)
- Last Synced: 2024-09-29T05:01:21.725Z (3 months ago)
- Topics: bibtex, conference, conference-paper, latex, latex-document, latex-template, neurips, neurips-2019, paper
- Language: TeX
- Homepage:
- Size: 150 KB
- Stars: 16
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LaTeX paper format for the NeurIPS 2019
=======================================This is an example of a paper in LaTeX for the conference NeurIPS 2019, but it could be also useful for future editions of a such conference.
Be careful, revision process is double blinded, so, at submittion you shoud omit the author names.
I didn't use natbib because it produces some conflicts with other packages.
## Modifications of the original format ##
I modified the next in order to have a better visualization but using the format and instructions given by NerurIPS committee.
### Modification 1. ###
Replace :
```
\usepackage[final]{neurips_2019}
```with:
```
\usepackage[nonatbib, final]{neurips_2019}```
### Modification 2. ###
Add the package:
```
\usepackage{cite}
```### Modification 3. ###
In order to add multiple authors in a better visualization, I used:
```
\author{
\textbf{AuthorName AuthorSurname $^1$, AuthorName AuthorSurname $^1$} \\
\textbf{AuthorName AuthorSurname $^1$ $^2$, AuthorName AuthorSurname $^2$}
\\
$^1$ Deppartament1, University1, Country1 \\
$^2$ Deppartament2, University2, Country2 \\
\texttt{\{email1, email2, email3\}@affiliation.edu}
\\
\texttt{[email protected]}
}
```### Modification 4. ###
Cite the papers using ```\cite{reference-name}```, example:
```
... we used the Caffe framework \cite{reference1}.
```### Modification 5. ###
I added the next packages in order to have a better manage of the images.
```
\usepackage{float}
\usepackage{graphicx}
\usepackage{subfig}
```### Modification 6. ###
Replace all the References section (included the subtitle) with:
```
\bibliography{references}{}
\bibliographystyle{plain}
```## Compiling ##
Compile step by step as follows:
Step 1. Compite with PDFLaTeX
Step 2. Compile with BibTeX
Step 3. Compile with PDFLaTeX
Step 4. Compile with PDFLaTeX
## Optional: Submiting to ArXiV ##
Be careful when you submit your paper to ArXiV.
Submit the main LaTeX files in a .tag compressed file. In my case, such main files are: paper_neurips.tex, neurips_2019.sty, images (folder), paper_neurips.bbl (generated from the references.bib at Step 2 of compiling).
## About ##
By: Dennis Núñez-Fernández
Website: [http://dennishnf.com](http://dennishnf.com)