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

时间:2010-09-23 10:43:19

标签: latex

我正在写我的简历,我想要列出一份出版物清单。为此,我想直接包含一个.bbl文件(使用bibtex生成)。 所以,在我的简历中我做了

\输入{publications.bbl}

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

感谢。

3 个答案:

答案 0 :(得分:7)

目录环境已经包含在.bbl文件中,因此处理文件 \input{publications.bbl}就足够了。

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

答案 1 :(得分:2)

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

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

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

答案 2 :(得分:0)

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

\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}