Can someone please help me get the code below to work but by running biber, not bibtex? I have a biblatex style (nejm) that only works with biber. I'm currently running RStudio 0.98.501 and this is the first line of the log file.
This is XeTeX, Version 3.1415926-2.5-0.9999.3 (TeX Live 2013) (format=xelatex 2013.5.30) 25 MAR 2014 17:55 entering extended mode
\documentclass{article}
\usepackage{polyglossia}
\usepackage{fontspec}
\usepackage{csquotes}
\setmainlanguage{english}
\begin{filecontents}{\jobname.bib}
@misc{test,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\usepackage[backend=bibtex, style=numeric]{biblatex}
\addbibresource{\jobname.bib}
%\addbibresource{/Users/simon/Documents/simon.bib}
\begin{document}
Test text
\parencite{test}
\printbibliography
\end{document}
backend… – Speravir Mar 26 '14 at 03:10backend=biberI have no problem compiling your code. (I have the sameXeTeXinstalled.) What problems do you have? – Martin - マーチン Mar 26 '14 at 03:16Package biblatex Warning: File 'test.bbl' is wrong format version - expected 2. 3.
Package biblatex Info: ... file 'test.bbl' found. (./test.bbl ! Undefined control sequence. ...c@refsection @entry@\blx@slist@name
l.32 \endentry
– spindoctor Mar 27 '14 at 17:42But, when I run RStudio, no .blg is compiled. So maybe it's not even running Biber when I'm in Rstudio.
– spindoctor Mar 31 '14 at 14:15