LaTeX:引用,但不引用

发布于 2024-09-29 06:52:45 字数 590 浏览 4 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深者入戏 2024-10-06 06:52:45

您可以尝试 \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.

无言温柔 2024-10-06 06:52:45

这是由于缺少包裹而发生的。如果您想解决问题,请启用自动安装包。之后,首先运行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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文