网站首页 文章专栏 Use cite in latex(xelatex)
首先,在工程中新建latex源文件,命名为 ref_test.tex
然后,建立文献引用文件, 命名为tex.bib
经过四次编译过程,分别是
xelatex ref_test.tex bibtex ref_test.aux xelatex ref_test.tex xelatex ref_test.tex
其他的注意要点:
1. \usepackage
中的numbers
指使用传统方式引用,即在文字后面加[index]
的方式
2. \usepackage
中的square
指使用方括号,super
指的是方括号是上标,比如
3. 引用的时候插入\cite{index}
,其中index
是bib文件中文献的自定义索引
4. 需要显示参考文献的地方插入\bibliography{tex}
,其他tex
是tex.bib
去掉后缀得到的。
- latex 源文件
\documentclass{ctexart} \usepackage[numbers,sort&compress,square, super]{natbib} \bibliographystyle{plainnat} \begin{document} \section{section1} Here is a simple example about how to cite an article\cite{refindex}. \bibliography{tex} \end{document}
@ARTICLE{refindex, author = {Laurent Itti and Christof Koch and Ernst Niebur}, title = {A model of saliency-based visual attention for rapid scene analysis}, journal = IEEE_J_TPAMI, month = {Nov.}, year = {1998}, volume = {20}, pages = {1254--1259}, number = {11}, }
额,好像多文件并没有增加复杂度,只要用\include
指令包含了子文件就可以正常引用。