我正在使用 displaystyle 内联数学制作一个表格,但无法在每行之间获得一致的垂直间距。
明确地说,我希望分数的垂直填充与行话的垂直填充相同。我尝试使用\def\arraystretch{...}
,但它没有产生一致的间距。
解决方案如何设置表格行与行之间的间距似乎并不能真正解决这个问题。
梅威瑟:
\documentclass{article}
\begin{document}
\begin{tabular}{|c|}
\hline
Gobbledygook\\
\hline
$\displaystyle\frac{a}{b}$\\
\hline
\end{tabular}
\end{document}