转载自
http://blog.sina.com.cn/s/blog_5e16f1770100g39w.html
http://blog.sina.com.cn/s/blog_5e16f1770100lqn7.html
加粗
\bfseries
典型
@startsection {NAME}{LEVEL}{INDENT}{BEFORESKIP}{AFTERSKIP}{STYLE}
NAME 表示所定义的节标题的名称(不要带反斜杠),比如section和subsection。
LEVEL 是一个数字,可以定义节标题的命令层次。这个数决定了定义的节标题是否编号(若是小于等于 secnumdepth则被编号)也决定了标题是否会被编进目录(若是小于等于tocdepth则被编号)。
INDENT : 定义节标题到版心左边的距离。此度量若是负数则标题进入边空。
BEFORESKIP: 是一个长度,其绝对值表示标题到上文之间的距离。若是此距离为负数,则标题后面的第一个段落不缩进。此度量最好是一个可以被伸长和缩短的长度。另外标题总是另起一段的。因而parskip已被加入到标题与上下文的距离。
AFTERSKIP :是一个长度,其绝对值表示独立显示的标题到下文之间的垂直间距或者是段内显示的标题到下文之间的距离。此度量若是负的,则定义的标题是段内显示的。对于独立显示的标题,parskip也已被加进标题与下文的距离。 STYLE :决定标题的内容形式。可以是任意影响文本排版结构的命令如加入尺寸\huge \large \bfseries 对齐命令等
\documentclass{article}
\usepackage{times}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{183.0pt}
\makeatletter
\newcommand\Csub{\@startsection{subsection}{2}%
{0pt}{-\baselineskip}{.2\baselineskip}%
{\centering\itshape}}
\newcommand\Lsub{\@startsection{subsection}{2}%
{0pt}{-\baselineskip}{.2\baselineskip}%
{\raggedright\sffamily}}
\newcommand\Rsub{\@startsection{subsection}{2}%
{0pt}{-\baselineskip}{.2\baselineskip}%
{\raggedleft\MakeUppercase}}
\newcommand\Hsub{\@startsection{subsection}{2}%
{0pt}{-\baselineskip}{.2\baselineskip}%
{\hrule\medskip\itshape}}
\makeatother
\begin{document}
\section{A very long heading that shows
the default behavior of \LaTeX's
sectioning commands}
\Csub{A subsection heading}
The heading is centered using an italic font.
\Lsub{A subsection heading}
The heading is left-justified using a sans
serif font.
\Rsub{A subsection heading}
The heading is right-justified and uses
uppercase letters.
\Hsub{A subsection heading}
This heading has a horizontal rule above
the text.
\end{document}
% define a chapter format
\makeatletter
\newcommand\MySec{@startsection{section}{1}%
{0pt}{-\baselineskip}{.2\baselineskip}%
{\large\bfseries}}
\makeatother
\makeatletter
\newcommand\Hsub{@startsection{subsection}{2}%
{0pt}{-\baselineskip}{.2\baselineskip}%
{\bfseries}}
\makeatother
\makeatletter
\renewcommand\bibsection{%
\section{{\large\bfseries{\refname}}@mkboth{\MakeUppercase{\refname}}{\MakeUppercase{\refname}}}\vspace{-.8\baselineskip}%
}%
\makeatother
\begin{thebibliography}{45}
\setlength{\itemsep}{-.1 em} % 缩小参考文献间的垂直间距
\setlength{\baselineskip}{-20pt} % 缩小参考文献的行垂直间距
%\setlength{\itemsep}{-1.5pt}