当前位置:   article > 正文

Latex中如何插入参考文献的两种方法_电子科大latex模版插入参考文献

电子科大latex模版插入参考文献

Latex几乎是每个科研er的必备神器,跟word相比,LaTeX的自动排版功能简直不要太方便。今天主要分享下使用Latex插入参考文献的两种方法。
———————————————————————

方法一: 在.tex文件的同级目录下建立.bib文件管理参考文献,并使用"\cite{}"命令在正文中引用参考文献。(常用方法)
具体地:
1、在.tex文件的同级目录中新建一个.bib文件。假设命名为ref.bib,文件内容如下:
@Inbook{Wille1982,
author={Wille, Rudolf},
editor={Rival, Ivan},
title={Restructuring Lattice Theory: An Approach Based on Hierarchies of Concepts},
bookTitle={Ordered Sets: Proceedings of the NATO Advanced Study Institute held at Banff, Canada, August 28 to September 12, 1981},
year={1982},
publisher={Springer Netherlands},
address={Dordrecht},
pages={445--470},
isbn={978-94-009-7798-3},
doi={10.1007/978-94-009-7798-3_15},
url={http://dx.doi.org/10.1007/978-94-009-7798-3_15}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
2、在.tex文件末尾的 \end{document} 之前加入以下代码,设置引用参考文献样式及参考文献目录文件ref.bib。
\bibliographystyle{参考文献样式}
% 参考格式根据不同刊物要求进行更改即可。
% 如IEEEtran, plain, unsrt, alpha, abbrv, ieeetr, acm, siam等等。

\bibliography{参考文献文件名}
% 由于新建的参考文献管理文件名为ref.bib,因此{}中填写ref,不需要加后缀名
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
3、在.tex主文件的\begin{ducument}之前加入宏包“\usepackage{cite}”,并使用“\cite{xxx}”命令,在正文中插入相应文献。(注:xxx为.bib文件中对应参考文献的自定义名称。)
% 以ref.bib为例,在一段文字中插入文献。
 
% 加入宏包
\usepackage{cite}

% 正文
\begin{ducument}
...
% 引用参考文献
The authors would like to thank...\cite{Wille1982} 
% ref.bib中参考文献的自定义名称为Wille1982,因此\cite{Wille1982} 
...
\end{ducument}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
4、编译.tex文件及相应辅助文件,生成插入文献的PDF文件。(划重点,请仔细阅读)
具体步骤为:
1)使用pdfLaTeX对"xxx.tex"主文件进行编译,生成辅助文件“xxx.aux”(xxx为文件名);
2)使用BibTex对辅助文件“xxx.aux”进行编译(注意!这里不是编译“ref.bib”文件),生成辅助文件“xxx.bbl”和“xxx.blg”;
3)使用pdfLaTeX对“xxx.tex”进行编译,插入相关文献(此时文中的新引用的文献内容显示为[?]);
4)再次使用pdfLaTeX对“xxx.tex”进行编译,生成文献序号。
  • 1
  • 2
  • 3
  • 4
  • 5
最终效果如图:在这里插入图片描述——————————————————————————
方法二:手动将.bib文件中的参考文献内容到复制到.tex主文件的文末(注:end{ducument}之前),使用“\bibitem{}”命令引用参考文献。
% 例如:
\begin{thebibliography}{1}

% 使用\bibitem{}引用具体文献
\bibitem{IEEEhowto:kopka}
% 参考文献[1]
H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus 0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.
% 参考文献[2]
\bibitem{IEEEhowto:kopka}
H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus 0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1997.
...

\end{thebibliography}
...
\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
效果如图:在这里插入图片描述

The end.

Hope it helps!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/372379
推荐阅读
相关标签
  

闽ICP备14008679号