\usepackage[numbers,sort&compress]{natbib}
%压缩引用文献的标记:比如[2,3,4]=[2-4],并自动排序
\usepackage{hyperref}
\hypersetup{hypertex=true,
colorlinks=true,
linkcolor=black,
anchorcolor=blue,
citecolor=blue}
%%%用于设置连接的。比如生成目录可以连接到文本。启动label的链接
%其中linkcolor表示链接的颜色,目录里的颜色就是这样修改的。
%citecolor表示引用文献时候的颜色,这里设置为蓝色
\usepackage{CJK}
用的时候必须在:\begin{document} 前加入:
\begin{CJK*}{GBK}{} %中文文字,英文请注掉
在英文格式里,每一个\section{}下面是默认没有缩进的,这就带来了麻烦,于是可用这样一句话缩进:
\setlength{\parindent}{2em} %缩进为2em,em为M大小
默认格式里的行间距是很大的,大概有1.5那么多:怎么设小一点呢?
\renewcommand{\baselinestretch}{1.1} %行间距
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}
%设置表格分行
要分行的时候加上代码
\tabincell[c]{文字\\文字}
即可
\usepackage[margin=0pt,skip=0pt,font=small,labelfont=bf,labelsep=period]{caption}
%skip:设置caption与图或表的空格。
%font:设置Figure x 或者 Table x 和caption 标题的字号
%labelfont: 设置Figure x 或 Table x是否为粗体
%labelsep:设置Figure x与标题中间隔着什么。
详细见:http://mirror.ctan.org/macros/latex/contrib/caption/caption-eng.pdf
\renewcommand\refname{References}
\bibliography{文件名} %生成参考文献的树。
\renewcommand\thesection{\Roman{section}}
\renewcommand\thesubsubsection{\arabic{section}.\arabic{subsection}.\arabic{subsubsection}}
\renewcommand\thesubsection{\arabic{section}.\arabic{subsection}}
%Roman :大写罗马
%roman:小写罗马体
%Alph: 大写字母
%alph:小写字母
\addcontentsline{toc}{section}{References} %添加references