I'm having a problem with using bibliography styles.
In the preamble:
\usepackage{biblatex}
\bibliography{ref}
If in the document I write:
\printbibliography
I get a version of the bibliography, but with the headline Bibliography, and I want it to say References. When I try to include \bibliographystyle{plain} (I have tried different ones as well) I only get the message:
package biblatex error: \bibliographystyle invalid.
Could someone please help me?
\usepackage[style=numeric]{biblatex}. – domwass Mar 01 '12 at 09:56biblatexrequire you to write\addbibresource{ref.bib}instead of the older command,\bibliography{ref}. – jon Mar 01 '12 at 14:10style=plainand it generates tons of errors withstyle 'plain' not found. – user19502 Jul 01 '13 at 16:00