在表格中,通过 `\\[]` 添加的额外行距**一定**是添加在单元格底部和横表线之间的。
你的需求可以参考 https://tex.stackexchange.com/a/312471
------
其他方案:
- 如果两个表格是左右并列的,可以考虑把它们合并为一个表格,用 `\cline` 画横表线。
- 除了前面链接里提到的 `cellspace` 宏包,`tabu` 也有类似功能
```tex
\documentclass{article}
\usepackage{tabu}
\begin{document}
\tabulinesep=_10pt^10pt
\begin{tabu}{|*{5}{X[c]|}}
\hline
a & b & c & d & e \\ \hline
a & b & c & d & e \\ \hline
\end{tabu}
\end{document}
```
一周热门 更多>