BibTeX, biblatex and bibermultibib | Econometrica Citation Style

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
saoirse
Posts: 2
Joined: Thu Nov 01, 2012 5:38 pm

multibib | Econometrica Citation Style

Post by saoirse »

Hello,

I would like to display my citations in the Econometrica style when using the multibib package in the book document class. Everything works fine when I use other citation styles such as plain or alpha, but once using Econometrica, I receive the error message "Undefined control sequence. \harvarditem[...]. My minimal code is the following:

Code: Select all

\documentclass{book}
\usepackage{multibib}
\newcites{one}{References 1}
\newcites{two}{References 2}
\newcites{three}{References 3}

\begin{document}
This citation belongs to ``References 1'': \citeone{article1}, whereas this one belongs to ``References 2'': \citetwo{article2}. This citation belongs to ``References 3'': \citethree{article3}.

\bibliographystyleone{alpha}
\bibliographyone{lit}
\bibliographystyletwo{alpha}
\bibliographytwo{lit}
\bibliographystylethree{alpha}
\bibliographythree{lit}

\end{document}
So as soon as I exchange alpha for econometrica, it generates the error message I mentioned. Does the multibib package not support the Econometrica style?

Thank you for any advice.
Last edited by localghost on Thu Nov 01, 2012 6:40 pm, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

multibib | Econometrica Citation Style

Post by kaiserkarl13 »

You need to include \usepackage{natbib} for that bibliography style to work.
saoirse
Posts: 2
Joined: Thu Nov 01, 2012 5:38 pm

Re: multibib | Econometrica Citation Style

Post by saoirse »

Thank you so much, now it works.
Post Reply