I wish to split up the references into catagories. I thought I could use multibib to do this.
When I try the below, I get all six references under each heading and not split up.
Can any one advise? thank you
My MWE is:
Code: Select all
\documentclass{article}
%\usepackage[numbers]{natbib}
%http://www.tug.org/TUGboat/tb30-1/tb94mori.pdf
\usepackage{multibib} %http://mirror.ox.ac.uk/sites/ctan.org/macros/latex/contrib/multibib/multibib.pdf
\newcites{A, B}%
{My References, %
Other References}
\begin{document}
\nociteA{lo2005reconciling, lo2002econometric, Lo2000a}
\renewcommand{\refname}{My References}
\bibliographystyleA{ieeetr}
\bibliographyA{C:/Users/me/References/references}
\nociteB{lo1988stock, lo2009a}
\renewcommand{\refname}{Other References}
\bibliographystyleB{ieeetr}
\bibliographyB{C:/Users/me/References/references}
\end{document}