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.
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}