我如何手动添加 bib 条目?

我如何手动添加 bib 条目?

我有一个.bib文件,其中每个用命令引用的作品\cite*都会出现在参考书目中。但是我如何添加一个\cite文档中任何地方都没有的额外项目?

我正在寻找类似的命令\addbibentry{author1999},但没有找到任何东西。

答案1

使用\nocite

\documentclass{article}
\begin{document}
abc \nocite{Andrews99}
\bibliographystyle{unsrt}
\bibliography{test}
\end{document}

测试.bib:

@book{Andrews99,
author   = {Andrews, G. E. and Askey, R. and Roy, R.},
title    = {Special Functions},
publisher= {Cambridge University Press},
year     = {1999}
}

诺西泰

相关内容