Latex公式图片间距

一、LATEX调整公式与正文间距离,调整空白大小:

调整空白命令:
\setlength{\abovedisplayskip}{3pt}
\setlength{\belowdisplayskip}{3pt}

用法,放在各种公式命令的适当位置,参见如下:

%样式一
\begin{equation}
\setlength{\abovedisplayskip}{3pt}
\setlength{\belowdisplayskip}{3pt}
y(t)=a(t)-b(t).
\end{equation}

%样式二
$$
\setlength{\abovedisplayskip}{3pt}
\setlength{\belowdisplayskip}{3pt}
y(t)=a(t)-b(t).
$$

%样式三
\begin{eqnarray}
\setlength{\abovedisplayskip}{3pt}
\setlength{\belowdisplayskip}{3pt}
y(t)=a(t)-b(t).
\end{eqnarray}

二、Latex调整图片与上下文距离
\vspace{-0.8cm} %调整图片与上文的垂直距离
\setlength{\abovecaptionskip}{-0.2cm} %调整图片标题与图距离
\setlength{\belowcaptionskip}{-1cm} %调整图片标题与下文距离


\usepackage{titlesec}宏包
\titleformat{\chapter}[display]{\normalfont\huge\bfseries\center}{\chaptertitlename\ \thechapter}{10pt}{\Huge}
\titleformat{\section}{\normalfont\Large\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\large\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{\normalfont\normalsize\bfseries}{\thesubsubsection}{1em}{}
\titleformat{\paragraph}[runin]{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titleformat{\subparagraph}[runin]{\normalfont\normalsize\bfseries}{\thesubparagraph}{1em}{}
下面的命令用于调节 标题与上下文,段落之间间距命令
\titlespacing{\chapter} {0pt}{50pt}{40pt}
\titlespacing
{\section} {0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
\titlespacing{\subsection} {0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\titlespacing
{\subsubsection}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\titlespacing{\paragraph} {0pt}{3.25ex plus 1ex minus .2ex}{1em}
\titlespacing
{\subparagraph} {\parindent}{3.25ex plus 1ex minus .2ex}{1em}

参数随便改

比如:我用\titlespacing*{\section} {0pt}{9pt}{0pt}来设置小的上下文与标题间距。

引用来源:

http://zh-cn.w3support.net/index.php?db=so&id=512967

你可能感兴趣的:(Latex公式图片间距)