latex写论文常用包与设置代码

包:

\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}{}   %中文文字,英文请注掉

常见设置格式的命令:

1、首行缩进

在英文格式里,每一个\section{}下面是默认没有缩进的,这就带来了麻烦,于是可用这样一句话缩进:

\setlength{\parindent}{2em}    %缩进为2em,em为M大小

2、调整行间距

默认格式里的行间距是很大的,大概有1.5那么多:怎么设小一点呢?

\renewcommand{\baselinestretch}{1.1}   %行间距

3、表格里的元素分行

\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}
%设置表格分行
要分行的时候加上代码
\tabincell[c]{文字\\文字}
即可

4、设置题注(caption)的格式

\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

5、设置参考文献的名字

\renewcommand\refname{References}

\bibliography{文件名} %生成参考文献的树。

6、设置section前面的数字


\renewcommand\thesection{\Roman{section}}
\renewcommand\thesubsubsection{\arabic{section}.\arabic{subsection}.\arabic{subsubsection}}
\renewcommand\thesubsection{\arabic{section}.\arabic{subsection}}

%Roman :大写罗马
%roman:小写罗马体
%Alph: 大写字母
%alph:小写字母

7、让目录中引入参考文献页

\addcontentsline{toc}{section}{References}  %添加references

你可能感兴趣的:(科学写作的工具与方法)