BibTeX, biblatex and bibermultibib | No Bibliography in Output

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
kat_e
Posts: 9
Joined: Sun Sep 09, 2012 5:04 pm

multibib | No Bibliography in Output

Post by kat_e »

Hey everyone!

I'm trying to create two bibliographies at the end of my document. One called "References" and the other "Industry Standards". I have attempted to follow instruction from the multibib manual and forum posts but there is an error somewhere.

After running BibTeX and LaTeX a few times I get the second bibliography but not the first, with the warnings:
Citation "sarna2003" undefined, No file ref.bbl and there were undefined citations.
Any help would be brilliant. Thanks

Code: Select all

\documentclass[a4paper,10pt]{report}
\usepackage[utf8x]{inputenc}
\usepackage{natbib}
\usepackage{multibib}
\newcites{ref}{References}

\begin{document}

A reference\citeref{sarna2003}.

A standard\cite{albrecht2006}.

\bibliographystyleref{plain}
\bibliographyref{references}

\renewcommand{\bibname}{Industry Standards}
\bibliographystyle{plain}
\bibliography{references}

\end{document}
I also tried this way.

Code: Select all

\documentclass[a4paper,10pt]{report}
\usepackage[utf8x]{inputenc}
\usepackage{natbib}
\usepackage{multibib}
\newcites{ref,std}{References,Industry Standards}

\begin{document}

A reference\cite[ref]{sarna2003}.

A standard\cite[std]{albrecht2006}.

\bibliographystyleref{plain}
\bibliographyref{references}

\bibliographystylestd{plain}
\bibliographystd{references}

\end{document}
Last edited by localghost on Sun Sep 09, 2012 6:32 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.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

multibib | No Bibliography in Output

Post by localghost »

You need to process every *.aux file separately with BibTeX. Did you do that? Section 1.2 of the multibib manual has a suggestion for automation.


Best regards and welcome to the board
Thorsten
kat_e
Posts: 9
Joined: Sun Sep 09, 2012 5:04 pm

multibib | No Bibliography in Output

Post by kat_e »

Hi Thorsten, no I didn't do that as I didn't understand it. I can see the ref.aux file in my folder but don't know what to do with it. Would you be able to explain in layman's terms please? I'm very new to programming language.

Thanks


Edit:
I've done it! Thanks
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: multibib | No Bibliography in Output

Post by localghost »

Processing the *.aux file(s) with BibTeX is similar to processing the source files (*.tex) with (PDF)LaTeX. You can do it on the command line for every single *.aux file or load them into your editor and press the button for BibTeX (or whatever your editor offers in this case). BibTeX will then produce a *.bbl file which is read by LaTeX to generate the bibliography in the final output. For multiple bibliographies it will need multiple *.bbl files.
Post Reply