我在环境中执行以下操作时遇到了麻烦tabular
:
title1 title2
------ ------
a 1
b 2
. .
. .
. .
z 26
即,只给列标题加下划线,而不是通常的横线。我想要列与列之间有空间,但列与列之间没有垂直线。
答案1
我建议你给书签尝试打包。以下 MWE(最小工作示例)显示了如何使用其命令\toprule
、\bottomrule
和。这些命令的工作方式与 LaTeX 命令和\cmidrule
非常相似,但它们提供了\hline
\cline
好多了水平线上方和下方的间距。此外, 和 创建的线条\toprule
比和\bottomrule
创建的线条更重(更粗),从而进一步使表格看起来更加精致。\midrule
\cmidrule
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{cc}
\toprule
title1 & title2 \\
\cmidrule(r){1-1} \cmidrule(l){2-2}
a & 1\\
$\vdots$ & $\vdots$\\
z & 26 \\
\bottomrule
\end{tabular}
\end{document}