如何在 Latex 中包含参考书目(.bbl 文件)?
我正在尝试写我的简历,并且我想包括一份出版物清单。为此,我想直接包含一个 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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
您使用了
\nocite{*}
吗?将\nocite{*}
放在\bibliographystyle
之前可能会导致星号出现。我有同样的问题,这对我有用:
Did you use
\nocite{*}
? putting\nocite{*}
before\bibliographystyle
can cause the asterisk to appear.I had the same issue, this works for me:
我必须看一些代码。但首先你要做的
是你拥有的吗?事实上,尝试一下,看看是否仍然出现“错误”:
I'd have to see some code. but first you do
Is that what you have? In fact, try this and see if you still get the "error":