This format is overly complicated but works well. To set it up, change:
- Rename
paper.tex
andpaper.bib
to something relevant for your project. - Edit
Makefile
, line 1, setSOURCES = paper.tex
to your main file. - Edit
paper.tex
, (which should now be renamed), near the end changepaper
in\bibliography{IEEEabrv,paper}
to your bib file name - Then you can start changing the title, authors, etc in the new
paper.tex
, rename the sections (e.g.2-body.tex
, though updatepaper.tex
if you do), etc. - You may also want to set per-author editing notes in
paper.tex
, to replace the examples\tom
and\sidd
. - I prefer not to upload
.pdf
and.ps
files that are created, but there may be other pdfs that should be. So add the output file name (replacingpaper.pdf
) to.gitignore
Structure:
- Main file is whatever replaced
paper.tex
, no actual text should show up here - Included
.tex
files per-section, i.e.1-introduction.tex
- Figures go in
figures/
, and if exporting from inkscape use the.eps_tex
option which this Makefile will look for
Useful commands:
make
- Regular PDF creationmake clean
- Remove all outputs (PDFs, etc)make noclean
- Create PDF and keep all intermediate filesmake check
- Check for special characters, repeated words, and a few other thingsmake arxiv
- Create a folder and zip suitable for uplaoding toarXiv.org
(experimental)