BibTeX, biblatex and biberMultibib in WinEdt

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
pikachu
Posts: 4
Joined: Sun Nov 22, 2009 11:27 pm

Multibib in WinEdt

Post by pikachu »

Hi
I am trying to get multibib to work, but it is simply not working! I am running the test code provided in the package information

Code: Select all

\documentclass{article}
\usepackage{multibib}
\newcites{ltex}{\TeX\ and \LaTeX\ References}
\begin{document}
References to the \TeX book \citeltex{lala} and to Lamport’s
\LaTeX\ book, which appears only in the
references\nociteltex{lala2}. Finally a cite to a Postscript
tutorial \cite{lala3}.
\bibliographystyleltex{alpha}
\bibliographyltex{publications}
\renewcommand{\refname}{Postscript References}
\bibliographystyle{plain}
\bibliography{publications}
\end{document}
And the bibliography is just

Code: Select all

@ARTICLE{lala,
  author = {hi},
  title = {you suck}
}
@ARTICLE{lala2,
  AUTHOR =     {what},
  TITLE =        {seriously}
}

@ARTICLE{lala3,
  author = {im hungry},
  title = {yes sir}
}
Only the normal "\cite{lala3}" is displayed, as reference as well as bibliography. I get undefined citation error for the other citations, it is like it doesn't recognize the multibib.

Thanks,
Henrik

Recommended reading 2024:

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

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

torbjorn t.
Posts: 162
Joined: Wed Jun 17, 2009 10:18 pm

Multibib in WinEdt

Post by torbjorn t. »

Notice the part in the documentation directly below that example:
To process your document, three runs of LATEX and two runs of BibTEX are
required.
latex mydoc
bibtex mydoc
bibtex ltex
latex mydoc
latex mydoc
WinEdt probably just runs BibTeX for mydoc, not for ltex. If you run BibTeX on ltex aswell, it works just fine.
Post Reply