LaTeX:引用,但不引用
我正在用 LaTeX 生成一组文档,并且我想为整个集合提供一个单一的全局参考书目页面。这是因为每个文档都有页数限制:我不想在每个文档的底部都添加参考文献,从而占用空间。
这意味着在每种情况下,我都想在文本中引用,但不会在最后提供参考文献。我正在使用 bibtex/natbib 来处理引用。
最简单的例子:
\documentclass[]{article}
\bibliographystyle{/usr/share/texmf/bibtex/bst/natbib/plainnat.bst}
\usepackage{natbib}
\begin{document}
In \citet*{MEF2010} I described the method.
\bibliography{bibliography.bib}
\end{document}
我该怎么做?本质上我只是希望它正确引用:
In Bloggs, Blagg and Blog (2010) I described the method.
但不要在最后添加参考文献部分。有什么想法吗?
谢谢,
大卫
I'm producing a set of documents in LaTeX, and I would like to provide a single, global bibliography page for the whole set. This is because each document is page-limited: I don't want to take up space with references at the bottom of each one.
This means in each case, I would like to cite in the text, but not produce a reference at the end. I am using bibtex/natbib to handle the referencing.
Simplest example:
\documentclass[]{article}
\bibliographystyle{/usr/share/texmf/bibtex/bst/natbib/plainnat.bst}
\usepackage{natbib}
\begin{document}
In \citet*{MEF2010} I described the method.
\bibliography{bibliography.bib}
\end{document}
How can I do this? Essentially I just want it to cite correctly:
In Bloggs, Blagg and Blog (2010) I described the method.
But not add a references section at the end. Any ideas?
Thanks,
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试
\nobibliography{bibliography.bib}
,而不是使用\bibliography{bibliography.bib}
。您仍然需要输入路径,以便进行交叉引用。
Instead of using
\bibliography{bibliography.bib}
you can try\nobibliography{bibliography.bib}
.You still need to enter the path so it can make the cross-references.
这是由于缺少包裹而发生的。如果您想解决问题,请启用自动安装包。之后,首先运行BibTeX文件并生成Pdf文件(而不是pdfLatex文件),然后pdfLatex转Pdf
It happens due to missing packages. If you want to resolve the problem then enable the automatic installation packet. After that,First, you run the BibTeX file and generate the Pdf file (instead of pdfLatex file) and then pdfLatex to Pdf