BibTeX, biblatex and bibermultibib errors

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
sw3quant
Posts: 76
Joined: Tue Nov 02, 2010 11:40 pm

multibib errors

Post by sw3quant »

I have a SINGLE jabref file containing all my references. I am using WinEdt.

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} 
Last edited by sw3quant on Tue Oct 16, 2012 3:25 pm, edited 1 time 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.

sw3quant
Posts: 76
Joined: Tue Nov 02, 2010 11:40 pm

multibib errors

Post by sw3quant »

ok. got it working. This has wasted six hours of my life. I hate latex...

Code: Select all

\documentclass{article}
%http://www.tug.org/TUGboat/tb30-1/tb94mori.pdf
%http://airminded.org/2006/02/25/multiple-bibliographies-in-latex/
%http://mirror.ox.ac.uk/sites/ctan.org/macros/latex/contrib/multibib/multibib.pdf

\usepackage{multibib} 

\newcites{A}{My References}
\newcites{B}{Other References}

\begin{document}

\nociteA{lo2005reconciling, lo2002econometric, Lo2000a}
\renewcommand{\refname}{My References}
\bibliographystyleA{ieeetr}
\bibliographyA{C:/Users/me/References/references} %this is my Bib file

\nociteB{lo1988stock, lo2009a}
\renewcommand{\refname}{Other References}
\bibliographystyleB{ieeetr}
\bibliographyB{C:/Users/me/References/references}

%0. run PDF TEXIFY, as per norm. This generates A.AUX and B.AUX in your folders.
%1. open up windows command prompt in Windt
%2. run:  "bibtex A"
%3. run:  "bibtex B"
%4. run PDF TEXIFY, as per norm.


\end{document}
Post Reply