下面是我正在使用的一些代码。
\begin{tabular}{l|m{4.75in}}
Equation 1 & $y^{10} + x^{6} + 7x^{3} + 6y^{11}$\\\hline
Equation 2 & $\begin{alignedat}{1}(n + 1)^{2}u_{n + 3} &+ (n^{4} + 4n^3 + 3n^{2} + 2n + 1)u_{n + 2} + (5m^{9} + 6m^{7} + m^{6})u_{n + 1} + p^{7} \\&+ (n^{20} + n^{19} + n^{18} + n^{17} + n^{16} + n^{15} + 5n + 2)u_{n + 10}\end{alignedat}$\\\hline
Notes & This is some equation\\\hline
\end{tabular}
如何增加公式 1 和公式 2 之间的垂直间距?在输出中,公式 2 的顶部与公式 1 底部的水平线相接。我试过了,\renewcommand{\arraystretch}{1.5}
但这似乎不适用于环境alignedat
。由于我有许多具有类似代码的表格,如果我不必手动浏览每一个表格,那就太好了。
答案1
\begin{tabular}{l|m{4.75in}}
Equation 1 & $y^{10} + x^{6} + 7x^{3} + 6y^{11}$\\\hline
Equation 2 &
$\begin{aligned}
\smash[b]{\vphantom{\bigg|}}
(n + 1)^{2}u_{n + 3} &+ (n^{4} + 4n^3 + 3n^{2} + 2n + 1)u_{n + 2} +
(5m^{9} + 6m^{7} + m^{6})u_{n + 1} + p^{7} \\
&+ (n^{20} + n^{19} + n^{18} + n^{17} +
n^{16} + n^{15} + 5n + 2)u_{n + 10}
\smash[t]{\vphantom{\bigg|}}
\end{aligned}$\\\hline
Notes & This is some equation\\\hline
\end{tabular}
在第一行中,被\bigg|
压在底部,在第二行中, 被压在顶部,这样两行就不会分开太多。它们是看不见的,因为它们在 里面\vphantom
。
您也\begin{alignedat}{1}
可以使用\begin{aligned}
(在这种情况下,没有任何区别)。