如何使用LaTeX—参考文献验证版

---恢复内容开始---

#如何使用LaTeX—参考文献

####1.main.tex 中如何书写:
```
\begin{document}

\cite{Behley2012Performance} %文章的名称
\newpage
\bibliography{references} %指定references.bib文件
\bibliographystyle{plain} %引用文献格式

\end{document}
```

####2.references.bib中的内容:
```
@inproceedings{Behley2012Performance,
title={Performance of histogram descriptors for the classification of 3D laser range data in urban environments},
author={Behley, Jens and Steinhage, Volker and Cremers, Armin B.},
booktitle={IEEE International Conference on Robotics and Automation},
pages={4391-4398},
year={2012},
} %BibTex可以使用百度学术检索出来
```

####3.文档编译步骤:
```
1.使用latex、pdflatex或Xelatex命令,编译main.tex文件,会生成main.aux文件
2.使用bibex命令,编译main.aux文件(不是references.bib文件)
3.重复两次步骤1,直至引用序号正确显示
```
####4.致谢:
```
Thanks for:
https://tex.stackexchange.com/questions/166831/cant-open-reference-aux[https://tex.stackexchange.com/questions/166831/cant-open-reference-aux](https://tex.stackexchange.com/questions/166831/cant-open-reference-aux)
```

---恢复内容结束---

猜你喜欢

转载自www.cnblogs.com/be-fly-MAX/p/9473278.html