BibTeX, biblatex and bibermultibib | Second Bibliography stays empty

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
thomasmorel
Posts: 2
Joined: Mon Sep 27, 2010 3:16 pm

multibib | Second Bibliography stays empty

Post by thomasmorel »

Hey,

I'm not very good at LaTeX, but had to install multibib in order to create a second bibliography. The thing is, I can't succeed, even when I use the example given in the multibib tutorial. I just can give the following information:
  • I'm using Windows XP, with MiKTeX 2.7 and TeXnicCenter.
  • I checked that the multibib package is installed
  • when I try to compile, all the citations of the second bibliography are said to be "undefined", when I run BibTeX, only the first one is taken into account, working as usual.
  • The two bibliographies are in the same directory.
I give the MWE that I'm using, but as I said it's only the example taken from the tutorial, so i guess i made something wrong before this point:

Code: Select all

\documentclass{article}   % classe "article", papier a4 et police de 11pt
\usepackage{multibib}

\newcites{sec}{test}

\begin{document}
Il faut bien sur citer \citesec{HI03} et ne pas oublier \cite{SC03} et \citesec{CO85}

\bibliographystyle{alpha}
\bibliography{combinatoirebis}

\bibliographystylesec{alpha}
\bibliographysec{combinatoire1} 
\end{document}
Thank you for helping !

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

multibib | Second Bibliography stays empty

Post by gmedina »

Hi,

are you compiling your document appropriately? Assuming your code above is example.tex you must compile it as follows:

(pdf)latex example
bibtex example
bibtex sec
(pdf)latex example
(pdf)latex example
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply