赞
踩
在此记录我对LaTeX中参考文献references的尝试,主要涵盖如题几个方面。
\documentclass[10pt]{article}
\begin{document}
<your text>
\bibliographystyle{plain}
\bibliography{E:/mybib}
\end{document}
\documentclass[10pt]{article}
#1 加上这一行
\usepackage[numbers,sort]{natbib}
\begin{document}
<your text>
#2 把plain改成unsrt
\bibliographystyle{unsrt}
\bibliography{E:/mybib}
\end{document}
\documentclass[10pt]{article}
\usepackage[numbers,sort]{natbib}
\begin{document}
<your text>
#1 把unsrt改成ieeetr
\bibliographystyle{ieeetr}
\bibliography{E:/mybib}
\end{document}
\documentclass[10pt]{article}
\usepackage[numbers,sort]{natbib}
#1 加上这一行
\setlength{\bibsep}{1.5pt}
\begin{document}
<your text>
\bibliographystyle{ieeetr}
\bibliography{E:/mybib}
\end{document}
\documentclass[10pt]{article} \usepackage[numbers,sort]{natbib} \setlength{\bibsep}{1.5pt} % 方法1:加入下面这一行,但是这个只有几个选项,比如:\Large, \large, \small, \tiny 等等。不完全符合我的需求 % \def\bibfont{\scriptsize} % 方法2:加入下面这一行,非常灵活。 其中第一个参数 7.5 是字体大小, 第二个参数 10 是行距大小。自己可以视情况调整。 \def\bibfont{\fontsize{7.5}{10}\selectfont} \begin{document} <your text> \bibliographystyle{ieeetr} \bibliography{E:/mybib} \end{document}
别看写起来很简单,当时研究的时候还是花了一些时间的。有时候还需要看natbib的文档。
而且现在的网页、参考文献都有点坑,话说不全。latex的一些命令的使用,也不介绍参数意义,或者用法也不说全。所以还是得自己多琢磨,巧妙思考。
从这么多参考文献、网页也可以看出来。。。还是有点费劲的。
总之一顿试。。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。