La traduction (en cours) est sur la branche "french"
The paper comes as a single latex
file Paper.tex
.
It can be viewed in PDF
format with pdflatex Paper.tex
(local install of a current free tex distribution required).
After creating Paper.pdf
for the first time and every time the bibliography file (Biblio.bib
) is updated, you will also need to run bibtex Paper
and then pdflater Paper
twice (e.g. bibtex Paper && pdflatex Paper && pdflatex Paper
) in order to correctly incorporate all the bibliography references.
There are also some online tools like http://latex.informatik.uni-halle.de/latex-online/latex.php you can use for compiling/preview.
A Makefile is provided to easily compile and clean generated files. The rules are only the commands described above.
To generate the PDF with the bibliography, use
make
If you want to clean all generated files except the generated PDF, use
make clean
If you wan to clean all generated files, included the generated PDF, use
make fclean