Latex如何添加参考文献——使用bib

综述

Latex引用文献是一个基础操作,这里介绍如何使用.bib文件来完成。

文件

首先你需要创建一个our.bib文件。关于该文件格式,百度一下就知道了。后期基本只需要复制粘贴即可。假设我们现在our.bib放的是:

@inproceedings{xixixiix,
  title={Recommendation over a heterogeneous social network},
  author={Zhang, Jing and Tang, Jie and Liang, Bangyong and Yang, Zi and Wang, Sijie and Zuo, Jingjing and Li, Juanzi},
  booktitle={Web-Age Information Management, 2008. WAIM'08. The Ninth International Conference on},
  pages={309--316},
  year={2008},
  organization={IEEE}
}

这里我们起名“xixixiix”。

代码

首先你要使用cite,那么\usepackage{cite}是必须的。

\documentclass{article}
\usepackage{cite}
\begin{document}

然后我们在文件某处引用

\cite{xixixiix}

最后在文章末尾:

\bibliographystyle{acm}
\bibliography{}%%我们的例子应该是\bibliography{cited}
\end{document}

即可!

你可能感兴趣的:(Latex)