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}
alpha
for econometrica
, it generates the error message I mentioned. Does the multibib package not support the Econometrica style?Thank you for any advice.