josephwright / biblatex-ieee

A biblatex implementation of the IEEE bibliography style
LaTeX Project Public License v1.3c
46 stars 14 forks source link

Undefined control sequence. #16

Closed jfdm closed 11 years ago

jfdm commented 11 years ago

When running BibLaTeX and the IEEE style, my document fails to finish typesetting completely. This used to work with versions of BibLaTeX and BibLaTeX IEEE under TexLive 2012. The error message is:

! Undefined control sequence.
<argument> \usebibmacro {cite:dump}\cbx@tempa 
                                              \usebibmacro {cite:init}\ifnam...

My Setup is:

A MWE LaTeX file is:

\documentclass{article}
\usepackage[backend=biber,natbib=true,style=ieee]{biblatex}
\ExecuteBibliographyOptions{maxnames=2,minnames=1,url=false, doi=true}
\bibliography{./biblio.bib}
\begin{document}
Introduced in \citet{Diffie1976ndc} public key encryption has been taught, and used.
\printbibliography
\end{document}

A BibTeX file is:

@ARTICLE{Diffie1976ndc,
  author =       {Diffie, W. and Hellman, M.},
  title =        {{New Directions in Cryptography}},
  year =         1976,
  volume =       22,
  number =       6,
  month =        nov,
  pages =        {644--654},
  issn =         {0018-9448},
  doi =          {10.1109/TIT.1976.1055638},
  url =
                  {http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1055638},
  journal =      {IEEE Transactions on Information Theory}
}
josephwright commented 11 years ago

This is caused by issue #14, which I've now fixed. I'm marking as a dupe as this is perhaps the best way to track!

jfdm commented 11 years ago

Cheers, after updating the package using tlmgr everything is back to as it should be.