ReScience / ReScience-article-2

Repository for the upcoming ReScience article
6 stars 14 forks source link

Compilation/BibTeX issues #10

Closed oliviaguest closed 7 years ago

oliviaguest commented 7 years ago

How are you compiling? I get BibTeX finished with exit code 2. Maybe add a README.md?

rougier commented 7 years ago

pdflatex & biber:

$ pdflatex draft
$ biber draft
$ pdflatex draft
$ pdflatex draft
oliviaguest commented 7 years ago

Oh, right, never used biber — explains my problems. :wink:

rougier commented 7 years ago

Just added a README.

jsta commented 7 years ago

Based on the README, I take it that you do not need file endings on those commands. My Makefile reads:

all:
    pdflatex draft.tex
    biber draft.bcf
    pdflatex draft.tex
oliviaguest commented 7 years ago

Tangent, but why not pop the Makefile in the repo too?