markdown-latex-boilerplate
markdown-latex-boilerplate copied to clipboard
pandoc citeproc issues
For some reason, I'm getting an error running make pdf
It says:
pandoc-citeproc: Could not find
pandoc: Error running filter pandoc-citeproc
Filter returned error status 1
make: *** [pdf] Error 83
Any idea what's wrong?
Not really sure, maybe you need to upgrade pandoc? What operating system are you using?
Running pandoc 1.15.2.1, on Mac OS X 10.11.1. It works fine if I try running pandoc with citeproc on anything else, only here is it giving me a problem for some reason.
It might be due to the config.txt. Can you try changing this line: https://github.com/davecap/markdown-latex-boilerplate/blob/master/config.txt#L6
Remove the ../
so it becomes CSL=elsevier-with-titles
Let me know if that works!
I've actually already tried that, no luck.
Hmm, not really sure then. Maybe there's an environment variable getting in the way? Have you tried messing with the Makefile itself?
Hey guys, I had the same issue.
I think it's just a misspelling error:
In the Default Config Settings of Makefile
file the variable name for the references is REFERENCES
, but when it's actually used later on it becomes simply REFS
.
i.e. --bibliography=$(REFS)
I got it working by changing either REF
to REFERENCES
(or viceversa)
Cheers
I created a PR
Thanks!!
Thank you for sharing your code!