ReScience / ReScience-article-2

Repository for the upcoming ReScience article

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compilation/BibTeX issues

oliviaguest opened this issue · comments

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

pdflatex & biber:

$ pdflatex draft
$ biber draft
$ pdflatex draft
$ pdflatex draft

Oh, right, never used biber — explains my problems. 😉

Just added a README.

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

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