一、缩短(sub/subsub)section标题与正文之间的距离
\usepackage{titlesec}
\titlespacing\section{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsection{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
\titlespacing\subsubsection{0pt}{12pt plus 4pt minus 2pt}{0pt plus 2pt minus 2pt}
二、缩短图片/表格标题与图片表格之间、与正文之间的距离
\setlength{\abovecaptionskip}{0pt}
\setlength{\belowcaptionskip}{0pt}
三、缩短公式与正文之间的距离
\abovedisplayshortskip=0pt
\belowdisplayshortskip=0pt
\abovedisplayskip=0pt
\belowdisplayskip=0pt
四、缩短段落之间的距离
\setlength{\parskip}{0pt}
五、参考文献中的期刊名使用IEEEabrv.bib中定义的期刊名缩写
该bib文件已经不更新了,一些新的期刊没有缩写。
最新版本下载地址[2015-08-26]
1. 将IEEEabrv.bib文件放在main.tex同一目录下。
2. main.tex文件中作如下修改:
\bibliography{reference}
改为
\bibliography{reference,IEEEabrv}
3. reference.bib文件中作如下修改:
@ARTICLE{6717211,
author={Ayach, Omar El and Rajagopal, Sridhar and Abu-Surra, Shadi and Pi, Zhouyue and Heath, Robert W.},
journal={IEEE Transactions on Wireless Communications},
title={Spatially Sparse Precoding in Millimeter Wave MIMO Systems},
year={2014},
volume={13},
number={3},
pages={1499-1513},
doi={10.1109/TWC.2014.011714.130846}}
改为
@ARTICLE{6717211,
author={Ayach, Omar El and Rajagopal, Sridhar and Abu-Surra, Shadi and Pi, Zhouyue and Heath, Robert W.},
journal=IEEE_J_WCOM,
title={Spatially Sparse Precoding in Millimeter Wave MIMO Systems},
year={2014},
volume={13},
number={3},
pages={1499-1513},
doi={10.1109/TWC.2014.011714.130846}}
六、参考文献中的网址转换为短网址
七、itemize参数设置
\begin{itemize}[leftmargin=10pt]