参考 bibtex

参考 bibtex

抱歉,这是关于引用的第无数篇文章;我已经读了不少,但似乎无法解决我的问题,所以就写到这里。我想通过将所有文章描述存储在单独的文件中来引用文章。

我的文件夹中有两个文件:references.bib 和 test.tex。

references.bib 如下所示:

  @article{fasshauer2011positive,
  title={Positive definite kernels: past, present and future},
  author={Fasshauer, Gregory E},
  journal={Dolomite Research Notes on Approximation},
  volume={4},
  pages={21--63},
  year={2011}
  }

test.tex 如下所示:

\documentclass{article}

\begin{document}

Please just be a nice citation: \cite{fasshauer2011positive}.

\newpage

\bibliography{references} 
\bibliographystyle{ieeetr}

\end{document}

但这让我\cite{fasshauer2011positive}有点[?]生气。所以谁能帮助我?:D

干杯。

答案1

您需要编译 bibtex 文件。

第一次编译时.tex,例如,通过运行 pdflatex test.tex,[?] 符号将被添加到每个未知引用。

然后您需要运行bibtex test以提供有关在 [?] 的位置放置什么的信息。

此后,您必须再运行两次pflatex test.tex:第一次将生成一个包含所用参考文献的列表(该列表将出现在文件末尾或页面末尾,具体取决于您在 上选择的样式\bibliographystyle),第二次将最终用对参考文献的引用填充 [?] 标记。

相关内容