6. LaTeX 参考文献的排版与引用
在论文写作的过程中,为了体现论文的科学性、严谨性和规范性,我们常常需要引用大量的参考文献来引证自己的观点。参考文献()往往都是放在论文的最后,记录了所引用论文的标题、作者、期刊或会议、出版时间等信息,文中还需要明确有顺序的进行引用标注。
本篇将介绍 常用的参考文献排版与引用方式,所用到的宏包都要写在 \ 命令之后和 \{}之前,在本文中,我们会用的宏包文件有:
\usepackage{cite}
\usepackage[number, sort&compress]{natbib}
1. 直接插入参考文献
先在文章的最后写好需要插入的参考文献,逐一列举出来。例如:
\begin{thebibliography}{100}
\bibitem{ref1}Lv Y, Duan Y, Kang W, et al. Traffic flow prediction with big data: a deep learning approach[J]. IEEE Transactions on Intelligent Transportation Systems, 2014, 16(2): 865-873.
\bibitem{ref2}Wu Y, Tan H, Qin L, et al. A hybrid deep learning based traffic flow prediction method and its understanding[J]. Transportation Research Part C: Emerging Technologies, 2018, 90: 166-180.
\bibitem{ref3}Polson N G, Sokolov V O. Deep learning for short-term traffic flow prediction[J]. Transportation Research Part C: Emerging Technologies, 2017, 79: 1-17.
\bibitem{ref4}Yin H, Wong S C, Xu J, et al. Urban traffic flow prediction using a fuzzy-neural approach[J]. Transportation Research Part C: Emerging Technologies, 2002, 10(2): 85-98.
\bibitem{ref5}Fu R, Zhang Z, Li L. Using LSTM and GRU neural network methods for traffic flow prediction[C]//2016 31st Youth Academic Annual Conference of Chinese Association of Automation (YAC). IEEE, 2016: 324-328.
\end{thebibliography}
上面列举了5个参考文献 {}[100] 的选项100表示参考文献的最大数量为100。\{} 表示一条参考文献,其中的 则表示的是文献的标注,即在正文的引用中会被用到。
效果如下:
那么我们如何在文中对其进行引用呢?参考文献的引用需要用到 \{cite},参考文献的引用要用到命令 \cite,例如我们要引用上面的参考文献,可以这样引用:
\section{REFERENCES}
\subsection{An overview of references}
We want to cite the paper \cite{ref1} \par
We want to cite the paper \cite{ref1,ref2,ref5} \par
We want to cite the paper \cite{ref1,ref2,ref3}
1、单篇参考文献引用:
We want to cite the paper \cite{ref1}
2、多篇参考文献一起引用:
需要用到的一个宏包:\[,sort&]{},它可以将连续的数字引用进行合并,即:[1, 2, 3] 合并成 [1-3],这样显得更美观更得体。而对于间断的数字引用则直接用逗号分开即可。
We want to cite the paper \cite{ref1,ref2,ref5}
We want to cite the paper \cite{ref1,ref2,ref3}
直接将参考文献写在 tex 文件中,基本上符合“所见即所得”。
2. 引用格式
是一种格式和一个程序,用于协调的参考文献处理. 使用数据库的的方式来管理参考文献. 文件的后缀名为 .bib .
我们在当前 tex 文件所在的文件目录下,创建一个以 .bib 为后缀的格式文件,命名为 .bib
bib 文件中的内容一般都是用论文查找网站生成的,最常用的是谷歌学术或百度学术。比如:想要查找某一篇文献的 bib 格式,可以按照如下的方法:
然后我们就能得到如下内容:
@article{2015Traffic,
title={Traffic Flow Prediction With Big Data: A Deep Learning Approach},
author={ Lv, Y. and Duan, Y. and Kang, W. and Li, Z. and Wang, F. Y. },
journal={IEEE Transactions on Intelligent Transportation Systems},
volume={16},
number={2},
pages={865-873},
year={2015},
}
下面我们将详细讲解每一部分:
1、标签