如何不使用 \bibliography 生成参考文献?

如何不使用 \bibliography 生成参考文献?

这是

如何在正文中完整引用一个 bibentry?

\bibliography命令做两件事:命名参考书目文件生成参考文献部分。

我能否以某种方式实现只命名参考书目文件但不生成参考文献部分?我想按照上述问题所述生成文中的参考文献。

答案1

如果您不需要真正的参考书目,请删除\bibliography{<my bibfile>}并改用\nobibliography{<my bibfile>}(在文档主体的开头 - 或者至少在第一个之前\bibentry)。

\documentclass{article}
\usepackage{bibentry}

\bibliographystyle{plainnat}

\begin{document}
\nobibliography{xampl}

A full in-text cite of \bibentry{article-full}.
\end{document}

全文引用了 L[eslie] A. Aamport 的文章。《The gnats and gnus document Preparation System》。《G-Animal's Journal》,41(7):73+,1986 年 7 月。这是一篇完整的文章。

中的示例https://tex.stackexchange.com/a/49051/35864用途\nobibliography*,因为它实际上使用 打印正常的参考书目\bibliography{<my bibfile>}

相关内容