11

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?

lockstep
  • 250,273
Helen
  • 111
  • 1
    If you want to choose a style in biblatex, you have to do so as a package option, e.g. \usepackage[style=numeric]{biblatex}. – domwass Mar 01 '12 at 09:56
  • 6
    Note also that newer versions of biblatex require you to write \addbibresource{ref.bib} instead of the older command, \bibliography{ref}. – jon Mar 01 '12 at 14:10
  • Doens't work, I think. I'm using biber with style=plain and it generates tons of errors with style 'plain' not found. – user19502 Jul 01 '13 at 16:00
  • related: http://tex.stackexchange.com/questions/66320/bibtex-plain-style-for-biblatex – matth Jul 01 '13 at 17:59

3 Answers3

10

You could also define the name in the optional argument to \printbibliography:

\printbibliography[title=References]
Torbjørn T.
  • 206,688
7

The heading for the bibliography is decided by the class you're using (and that you should have mentioned).

The article class uses the string that's stored in \refname, while report and book use \bibname. From your question it seems that

\renewcommand{\bibname}{References}

should do the trick. Note that the \bibliographystyle command must not be used when using biblatex.

egreg
  • 1,121,712
  • 1
    If I use biblatex how then should I change the style? If you say that we cannot use \bibliographystyle. – zygimantus Jan 01 '16 at 19:37
  • 1
    @zygimantus The title of this question might sound harsh, but don't worry, just look at the resources in the answers: http://tex.stackexchange.com/questions/13509/biblatex-for-idiots – egreg Jan 01 '16 at 20:36
5

Try this in the preamble to change the heading:

\DefineBibliographyStrings{english}{%
  bibliography = {References}}
dhst
  • 1,078