10

How can I use change style in biblatex?

I want to use a specific style, probably ACM or IEEE and I don't know how to change that.

Below is the current code:

\documentclass[a4paper,11pt]{article}
\usepackage[sorting=none]{biblatex}
\bibliography{MyCollection}
\begin{document} 
\printbibliography
\end{document}
Werner
  • 603,163
sab
  • 101

1 Answers1

14

As an introduction to biblatex, you might want to read the biblatex tag info and maybe an example of basic usage.

biblatex comes with a variety of styles, these are described in the biblatex documentation (section 3.3), more styles can be found on CTAN. There exists a contributed style named IEEE or biblatex-ieee. You can easily use it as shown in the following MWE (or as in the comment by Harish Kumar):

\documentclass{report}
\usepackage[american]{babel}
\usepackage[babel=true]{csquotes}
\usepackage[
    backend=biber,
    style=ieee,
    sorting=none
]{biblatex}
% \addbibresource{MyCollection.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem ipsum dolor sit amet \cite{sigfridsson}.
At vero eos et accusam duo dolores \cite{kastenholz}.
\printbibliography
\end{document}

This MWE uses biber as a backend for sorting and \addbibresource{} instead of \bibliography{}.

An ACM style does not yet exist, you would have to define a style yourself. Again, Harish Kumar gave a good starting point for defining an ACM style. In the answer to that question, there are two examples, the first uses bibtex for formatting, the second example uses biblatex. These two should not be confused.

matth
  • 12,381
  • Is ACM at all like the IEEE style. I'm always willing to take on styles generally in the area I understand (numeric ones, not too complex, etc.) – Joseph Wright May 22 '12 at 16:15
  • I'm sorry, I don't know. @lockstep starts from numeric in the question linked, so I would guess yes. The bibtex style is described here: http://www.acm.org/publications/latex_style/ – matth May 22 '12 at 16:19