I am trying to compile a simple tex file but I get this warning and no bibliography printed out:
Package biblatex Warning: No "backend" specified, using Biber backend.
I am using Kile on Ubuntu 14.04. While the same exact file on another pc with Ubuntu 12.04 is correclty working. What is the problem? How can I solve it?
Here is my MWE:
\documentclass[a4paper,11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[italian,english]{babel}
\usepackage[T1]{fontenc}
\usepackage{booktabs}
\usepackage[font={small}, labelfont=bf, hypcap=true]{caption}[2004/07/16]
\usepackage[unicode,colorlinks=true]{hyperref}
\usepackage[babel]{csquotes}
\usepackage[style=authoryear-comp,maxcitenames=1,maxbibnames=99,sortcites=true,firstinits=true,doi=false,url=false,isbn=false, hyperref]{biblatex}%style=numeric-comp,sorting=none,backend=biber
\renewbibmacro{in:}{% elimina il in nella biblio
\ifentrytype{article}{}{%
\printtext{\bibstring{in}\intitlepunct}}}
\renewcommand*{\bibfont}{\small}
\bibliography{biblioTC}
\title{My paper title}
\author{Me}
\date{}
\begin{document}
\maketitle
\newpage
\section{Test}
Lalalalalalalalalala \cite{Colitti2014}.
\newpage
\phantomsection\addcontentsline{toc}{section}{\refname}
\printbibliography
\end{document}
\bibliography{biblioTC}, butaddbibresource{biblioTC.bib}. That said, did you run the chain:(pdf)latex > biber > (pdf)latex > (pdf)latex? – Bernard Jul 06 '14 at 13:55\bibliography. Anyway I tried with\addbibresourceand I get that the .bbl file is in the wrong format - expected 2.3. I guess the problem is in the compiler or in the settings or installation of bibtex. – Stefano_g Jul 06 '14 at 14:22