On 06/03/2016 02:50 AM, Wolfgang Engelmann wrote:
[166] Utils.pm:147> WARN - *Warning: Found biblatex control file version
2.6, expected version 3.0*
I highlightes the Warning: Could this be the cause of the failure?


It might be better to ask at http://tex.stackexchange.com/, so that someone with a similar configuration can test. Use these two files as minimal working example. Test them yourself, too: save in the same directory, then
pdflatex mwe
biber mwe
pdflatex mwe
pdflatex mwe







-------------------- file mwe.tex
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{color}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[unicode=true,pdfusetitle,
 bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,pdfborder={0 0 0},pdfborderstyle={},backref=false,colorlinks=true]
 {hyperref}
\hypersetup{
 citecolor=blue,urlcolor=blue}


\usepackage[style=authoryear,natbib=true,backend=biber]{biblatex}

\addbibresource{mwe-bibliography.bib}

\ExecuteBibliographyOptions{backref=true,doi=true}


\begin{document}
\section{BibLaTeX with biber}
His book \citetitle{Newton1686}, first published in \citeyear{Newton1686},
is regarded as one of the most important works in the history of science
\citep{Newton1686}.

\clearpage{}

\nocite{*}
\printbibliography
\end{document}









-------------------- file mwe-bibliography.bib
@Book{Newton1686,
author = {Newton, Isaac},
title = {Philosophi{\ae} Naturalis Principia Mathematica},
publisher = {Jussu Societatis Regiae},
year = {1686},
address = {London}
}

@article{Maxwell1865,
author = {Maxwell, James Clerk},
title = {A dynamical theory of the electromagnetic field},
journal = {Philosophical Transactions of the Royal Society of London},
doi = {10.1098/rstl.1865.0008},
year = {1865},
pages = {459--512}
}

@article{Einstein1905,
author = {Einstein, Albert},
title = {Zur Elektrodynamik bewegter K{\"o}rper},
journal = {Annalen der Physik},
doi = {10.1002/andp.19053221004},
year = {1905},
volume = {17},
pages = {891--921}
}




Reply via email to