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

Moo*_*wer 4 latex

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

\输入{publications.bbl}

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

谢谢.

Mig*_*rro 7

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

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


小智 5

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

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

\bibliographystyle{IEEEtran}
\nocite{*}
\bibliography{my_bib_file}
Run Code Online (Sandbox Code Playgroud)


Der*_*unk 2

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

\begin{thebibliography}{}
   \input{publications.bbl}
\end{thebibliography}
Run Code Online (Sandbox Code Playgroud)

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

\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}
Run Code Online (Sandbox Code Playgroud)