如何减少 space, vertical space
Squeezing Space in LaTeX
垂直距离 (Vertical space)
1. 调整公式中行间的距离 (公式自动换行或者 align 环境)
\setlength{\jot}{2pt}
但是这种办法不能调整 array 中的 vertical space
2. 调整 array 中的 vertical space
第一种办法(首选)
\newcommand\ST{\rule[-1em]{0pt}{2.5em}}
...
\left(\begin{array}{c|c}
\ST \dfrac{1}{2} & \dfrac{1}{2}\\ \hline
\ST \dfrac{1}{2} & \dfrac{1}{2}
\end{array}\right)第二种办法
\setlength{\extrarowheight}{0.3cm}水平距离
array 中 column 之间的距离
\setlength{\arraycolsep}{1pt}
0 comments:
Post a Comment