如何在 Latex 中包含参考书目(.bbl 文件)?

发布于 2024-09-24 18:36:53 字数 205 浏览 2 评论 0原文

我正在尝试写我的简历,并且我想包括一份出版物清单。为此,我想直接包含一个 .bbl 文件(使用 bibtex 生成)。 因此,在我的简历中,我执行

\input{publications.bbl}

这似乎工作正常,除了一件事:星号 (*) 出现在出版物列表的左侧!我不知道这个 * 从哪里来以及为什么它出现在那里。知道如何删除这个 * 吗?

谢谢。

I am trying to write my CV, and I want to include a list of publications. To do that, I want to include a .bbl file directly (which was generated using bibtex).
So, in my CV I do

\input{publications.bbl}

This seems to work fine, except for one thing: an asterisk (*) appears on the left to the lists of publications! I don't know where this * comes from and why it appears there. Any idea how I can remove this *?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

烟沫凡尘 2024-10-01 18:36:53

thebibliography 环境已包含在 .bbl 文件中,因此可以使用以下命令处理该文件
\input{publications.bbl} 应该足够了。

出版物列表的格式取决于 BibTex 使用的参考书目风格
\bibliographystyle 命令。有关可用样式的更多信息,请查看:
https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#Bibliography_styles

The thebibliography environment is already included in .bbl files so processing the file with
\input{publications.bbl} should be enough.

The format of the publication list depends on the bibliography style used by BibTex with
the \bibliographystyle command. For more information about available styles take a look at:
https://en.wikibooks.org/wiki/LaTeX/Bibliography_Management#Bibliography_styles

青柠芒果 2024-10-01 18:36:53

您使用了 \nocite{*} 吗?将 \nocite{*} 放在 \bibliographystyle 之前可能会导致星号出现。

我有同样的问题,这对我有用:

\bibliographystyle{IEEEtran}
\nocite{*}
\bibliography{my_bib_file}

Did you use \nocite{*}? putting \nocite{*} before \bibliographystyle can cause the asterisk to appear.

I had the same issue, this works for me:

\bibliographystyle{IEEEtran}
\nocite{*}
\bibliography{my_bib_file}
寒江雪… 2024-10-01 18:36:53

我必须看一些代码。但首先你要做的

\begin{thebibliography}{}
   \input{publications.bbl}
\end{thebibliography}

是你拥有的吗?事实上,尝试一下,看看是否仍然出现“错误”:

\begin{thebibliography}{}
\bibitem{ano05}
    A. Nonymous et al.\ 2005, \aap 123, 456\\[-20pt]
\bibitem{oe04}
    A.N. Other \& S.O.M. Ebody 2004, \pasp 123, 456\\[-20pt]
\end{thebibliography}

I'd have to see some code. but first you do

\begin{thebibliography}{}
   \input{publications.bbl}
\end{thebibliography}

Is that what you have? In fact, try this and see if you still get the "error":

\begin{thebibliography}{}
\bibitem{ano05}
    A. Nonymous et al.\ 2005, \aap 123, 456\\[-20pt]
\bibitem{oe04}
    A.N. Other \& S.O.M. Ebody 2004, \pasp 123, 456\\[-20pt]
\end{thebibliography}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文