I'm using the CV template created by Rob J Hyndman and MWE is given below. In past, every thing was working fine but now biblatex is not working properly (see below snap). Even I updated the packages but no success. Any help to resolve this issue will be highly appreciated.
\documentclass[a4paper,11pt]{article}
\usepackage{cv}
\name{Rob J Hyndman}
\info{Address: & Department of Econometrics \& Business Statistics, Monash University, VIC 3800, Australia.\\
Phone: & +61 3 9905 2358\\
Email: & Rob.Hyndman@monash.edu\\
WWW: & robjhyndman.com}
\bibliography{CVTest}
\addtocategory{papers}{yaseen2005modeling}
\begin{document}
\maketitle
\begin{publications}
\printbib{papers}
\end{publications}
\end{document}


biblatexpackage in your preamble? – Roey Angel Mar 19 '13 at 16:34\usepackage{biblatex}but without any success. – MYaseen208 Mar 19 '13 at 16:43biberis the default backend for newer version ofbiblatex. You compiler profile in TexNicCenter is set up to usebibtex. Either try usingbackend=bibtexas option to thebiblatex-package\usepackage[backend=bibtex]{biblatex}, or update the TeXNicCenter profile to usebiber. – Sveinung Mar 19 '13 at 20:35