我知道这种增加或减少\begin{array}
环境间距的方法
\renewcommand{\arraystretch}{2}
但是有什么方法可以设置特定的尺寸值吗,\jot
例如恰好一个?
答案1
你可以尝试表格数组包:选项stretch=0
删除支柱,选项rowsep=0.5\jot
设置精确的间距。
\documentclass{article}
\usepackage{tabularray}
\usepackage{amsmath}
\begin{document}
\[ \begin{tblr}{stretch=0,colsep=5pt,rowsep=0.5\jot}
\tan x & \cot x \\
\frac34 & \dfrac45 \\
\cos x & \sin x \\
\end{tblr} \]
Also you can define a new environment for this:
\NewTblrEnviron{myarray}
\SetTblrInner[myarray]{stretch=0,colsep=5pt,rowsep=0.5\jot}
\[ \begin{myarray}{lc}
\tan x & \cot x \\
\frac34 & \dfrac45 \\
\cos x & \sin x \\
\end{myarray} \]
\end{document}