开发者

Latex and multibib

I want to split my bibliography into two parts, and found the multibib package which seems to be perfect for this. But: somehow it doesn't work, not even the simple example works:

\documentclass{article}
\usepackage{multibib}
\newcites{ltex}{\TeX\ and \LaTeX\ References}
\begin{document}
References to the \TeX book \citeltex{Knuth:1991} and to Lamport’s \LaTeX\ book, which appears only in the references\nociteltex{Lamport:1994}. Finally a cite to a Postscript tutorial \cite{Adobe:1985}.
\bibliographystyleltex{alpha}
\bibliographyltex{lit}
\renewcommand{\refname}{Postscript References}
\bibliographystyle{plain}
\bibliography{lit}
\end{document}

With the bib file looking like that

@book{Knuth:1991, author = {Knuth, Donald E.}, title = {The TEC book}, publisher = {Addison-Wesley, Reading, Massachusetts}, year = {1991}}
@book{Lamport:1994, author = {Lamport, Leslie}, title = {LATEX: A Document Preparation System}, publisher = {Addison-Wesley, Reading, Massachusetts, 2 edition}, year = {1994} }
@book{Adobe:1985, author = {Adobe System Incorporated},   title = {Postscript Language Tut开发者_StackOverfloworial and Cookbook},   publisher = {Addison-Wesley, Reading, Massachusetts},   year = {1985}}

As expected, two aux files are created (one for each part), but the created pdf file only contains the references for the "normal", not for the created bib.

Any ideas? Thanks!


Ok, I found it out by myself:

I'm using Texniccenter and tought all the compiling is done automatically, but an additional bibtex call is needed for the ltex.aux file, so you need to run

bibtex ltex.aux

manually on the command line, then it works. Perhaps someone knows a way to do that call from Texniccenter?


Open the ltex.aux file in Texnic Center (through File then Open...). Once it is open and it is the selected tab in Texnic Center, go to Build, Current File... and click Bibtex. The key here is to choose the Bibtex command in the Current File option. This performs the same as bibtex ltex.aux in Texnic Center

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜