[Tex/LaTex] Bibliography style in CV

biblatexbibliographies

I'm using the following nice LaTeX template for CV. I'm getting the bibliography in the following style

Hyndman, R. J., M. L. King, I. Pitrun, and M. B. Billah etc

I want the apacite style. I tried the following code:

\usepackage{apacite}
\bibliographystyle{apacite}

but it did not work. I'd highly appreciate if you help me to figure out this. Thanks in advance

Best Answer

You need to load biblatex-apa as a package option when you load the biblatex package (thanks Thorsten). The problem is that the cv package you are referring to includes bibliography formatting commands (things like \DeclareBibliographyDriver) so you will need to manually load the biblatex pacakge after you load the cv package, but even then you might run into some compatibility issues.