I have an issue about the generation of bibliography. Indeed, only the first reference is displayed at the end of the document and the hyperlink and reference corresponding for the second one don't appear.
Here is my LaTeX source:
\RequirePackage{filecontents}
\begin{filecontents}{sample.bib}
@article{SNIa,
title={Measurements of $\Omega$ and $\Lambda$ from 42 high-redshift supernovae},
author={Perlmutter S. et al.},
journal={ApJ},
year={1995}
}
@article{Tegmark1998,
title={Measuring the Galaxy Power Spectrum with Future Redshift Surveys},
author={Tegmark M., Hamilton A.J.S., Strauss M.S., Szalay A.S.},
journal={ApJ},
pages={499-555.},
year={1998}
}
\end{filecontents}
\documentclass[11pt,french,oneside]{report}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[francais]{babel}
\usepackage{indentfirst}
\usepackage{lastpage}
\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{url}
\usepackage{epsfig}
\usepackage{graphics}
\usepackage{multirow}
\usepackage{vmargin}
\usepackage{float}
\usepackage{psboxit,pstcol}
\usepackage[style=ext-authoryear, backend=biber]{biblatex}
\usepackage{hyperref}
...
% well displayed
SNIa \cite{SNIa} et valid\'ee depuis par d'autres d'observations
...
% bad displayed
dans le papier de \cite{Tegmark1998}
About the end of the document, I have only the first reference:
Anyone could see what's wrong? Is there a missing bracket in the .bib file?


