当前位置:   article > 正文

[LaTeX] 调整参考文献的格式(References),包括作者名缩写,行距,字体,引用顺序等等_ieee模板的latex参考文献如何改编号为作者

ieee模板的latex参考文献如何改编号为作者

前言

在此记录我对LaTeX中参考文献references的尝试,主要涵盖如题几个方面。

1 基本框架

\documentclass[10pt]{article}

\begin{document}
<your text>

\bibliographystyle{plain}
\bibliography{E:/mybib}

\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

2 参考文献的编号符合文中引用顺序

\documentclass[10pt]{article}

#1 加上这一行
\usepackage[numbers,sort]{natbib}

\begin{document}
<your text>

 #2 把plain改成unsrt
\bibliographystyle{unsrt} 
\bibliography{E:/mybib}

\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

3 将作者名缩写(但是姓不缩写)

\documentclass[10pt]{article}

\usepackage[numbers,sort]{natbib}

\begin{document}
<your text>

 #1 把unsrt改成ieeetr
\bibliographystyle{ieeetr} 
\bibliography{E:/mybib}

\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

4 调整参考文献之间的距离(类似行距)

\documentclass[10pt]{article}

\usepackage[numbers,sort]{natbib}
#1 加上这一行
\setlength{\bibsep}{1.5pt}

\begin{document}
<your text>

\bibliographystyle{ieeetr} 
\bibliography{E:/mybib}

\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

5 调整参考文献的字体大小

\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}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

小结

别看写起来很简单,当时研究的时候还是花了一些时间的。有时候还需要看natbib的文档。

而且现在的网页、参考文献都有点坑,话说不全。latex的一些命令的使用,也不介绍参数意义,或者用法也不说全。所以还是得自己多琢磨,巧妙思考。

参考文献

从这么多参考文献、网页也可以看出来。。。还是有点费劲的。

总之一顿试。。

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

闽ICP备14008679号