So I am trying biblatex in the end. Here's the issue I've got so far with LyX: \printbibliography doesn't print the bibliography, it just shows the citations.
When I test the exported code with TexWorks, however, it just works indeed. So what's wrong with my LyX setup ? I did everything the guide says on LyX wiki. Besides I've got an Undefined control sequence on \endentry when switching to Biber backend, so I am keeping the default bibtex backend for now. How come the exported code from LyX prints the bibliography whereas LyX built-in preview doesn't?
Here's the exported code by LyX, working only outside LyX...
%% LyX 2.0.6 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{verbatim}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\usepackage[style=authoryear,natbib=true,backend=bibtex]{biblatex}
%\addbibresource{path / to /file.bib}
\bibliography{file}
\makeatother
\usepackage{babel}
\begin{document}
\cite{Binet2006[1887]}
\cite{Collins1992[1985]}
\begin{comment}
\bibliographystyle{plain}
\bibliography{file}
\end{comment}
\printbibliography
\end{document}
Many thanks
\addbibresource{C:/file.bib}made it! I do appreciate biblatex being compatible with babel. It replaces babelbib. Thanks – elge Nov 16 '13 at 20:29