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}
Code: Select all
@ARTICLE{lala,
author = {hi},
title = {you suck}
}
@ARTICLE{lala2,
AUTHOR = {what},
TITLE = {seriously}
}
@ARTICLE{lala3,
author = {im hungry},
title = {yes sir}
}
Thanks,
Henrik