前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Use cite in latex(xelatex)

Use cite in latex(xelatex)

作者头像
羽翰尘
修改2019-11-26 15:54:17
1.3K0
修改2019-11-26 15:54:17
举报
文章被收录于专栏:技术向技术向

本文由腾讯云+社区自动同步,原文地址 http://blogtest.stackoverflow.club/cite-in-latex/

使用latex做文献引用

首先,在工程中新建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指的是方括号是上标,比如 $引文^2$
  3. 引用的时候插入\cite{index},其中index是bib文件中文献的自定义索引
  4. 需要显示参考文献的地方插入\bibliography{tex},其他textex.bib去掉后缀得到的。
  5. latex 源文件 1234567891011\documentclass{ctexart}\usepackagenumbers,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}
  6. bib源文件 12345678910@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},}

多文件latex做文献的交叉引用

额,好像多文件并没有增加复杂度,只要用\include指令包含了子文件就可以正常引用。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-05-10,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 使用latex做文献引用
  • 多文件latex做文献的交叉引用
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档