桌子之间的对称性

桌子之间的对称性

我需要让这些表格看起来一样。在列宽相同的情况下,我想让顶行独立,并且没有任何垂直线。在第一行下面,各列之间应该有一条线。(最右边或最左边没有线,第一行下面有双线)。我该怎么做?

\begin{table}[H]
\begin{tabular}{|p{1.5cm}S|p{5cm}S|p{1.5cm}S}
\hline
\textbf{Weight}  & \textbf{Velocity of the vehicle} & \textbf{Stable} \\ \hline \hline
\multicolumn{1}{l|}{1 kg}      &            &    \\ 
\multicolumn{1}{l|}{2 kg}      &            &    \\ 
\multicolumn{1}{l|}{3 kg}     &            &    \\ 
\multicolumn{1}{l|}{4 kg}      &            &    \\ 
\multicolumn{1}{l|}{5 kg}     &            &    \\ 
\multicolumn{1}{l|}{6 kg}    &            &    \\ 
\multicolumn{1}{l|}{7 kg}   &            &    \\ 
\multicolumn{1}{l|}{8 kg}  &            &    \\ 
\multicolumn{1}{l|}{9 kg} &            &    \\ 
\multicolumn{1}{l|}{10 kg}&            &    \\ \hline
\end{tabular}
\end{table}

\begin{table}[H]
\begin{tabular}{|p{1.5cm}S|p{5cm}S|p{1.5cm}S}
\hline
\textbf{Angular Velocity}  & \textbf{Velocity of the vehicle} & \textbf{Stable} \\ \hline \hline
\multicolumn{1}{l|}{1 rad/s}      &            &    \\ 
\multicolumn{1}{l|}{2 rad/s}      &            &    \\ 
\multicolumn{1}{l|}{3 rad/s}       &            &    \\ 
\multicolumn{1}{l|}{4 rad/s}      &            &    \\ 
\multicolumn{1}{l|}{5 rad/s}       &            &    \\ 
\multicolumn{1}{l|}{6 rad/s}       &            &    \\ 
\multicolumn{1}{l|}{7 rad/s}       &            &    \\ 
\multicolumn{1}{l|}{8 rad/s}       &            &    \\ 
\multicolumn{1}{l|}{9 rad/s}       &            &    \\ 
\multicolumn{1}{l|}{10 rad/s}      &            &    \\ \hline
\end{tabular}
\end{table}

答案1

以下可能是您想要的:两个表格都有三列,主列类型为S,三个标题单元格的列类型设置p{<some width>}为,垂直条仅在表格主体内部(而不是边缘)。

请注意,我建议将常用测量单位——\si{\kilo\gram}\si{\radian\per\second}——分别放在标题单元格内;这样做有助于减少表格主体的混乱。

您可能还想考虑完全去掉垂直线。几乎无一例外,表格中的垂直线在视觉上相当于拐杖和训练轮。除非表格非常复杂(这里似乎不是这种情况),否则您会发现眼睛可以更自由地移动,大脑实际上有更多机会接收意义如果移除训练轮和拐杖,桌子的

\documentclass{article}
\usepackage{siunitx,float,booktabs}
\sisetup{per-mode = symbol} % use "/" symbol 
\begin{document}

\begin{table}
\begin{tabular}{S[table-format=2.0]|S|S}
\toprule
\multicolumn{1}{p{1.5cm}}{\textbf{Weight}}  & 
\multicolumn{1}{p{5cm}}{\textbf{Velocity of the vehicle}} &
\multicolumn{1}{p{5cm}}{\textbf{Stable}} \\
\multicolumn{1}{c}{[\si{\kilo\gram}]}\\
\hline \hline
1      &            &    \\
2      &            &    \\
3      &            &    \\
4      &            &    \\
5      &            &    \\
6      &            &    \\
7      &            &    \\
8      &            &    \\
9      &            &    \\
10     &            &    \\ 
\hline
\end{tabular}
\end{table}

\begin{table}[H]
\begin{tabular}{S[table-format=2.0]|S|S}
\toprule
\multicolumn{1}{p{1.5cm}}{\textbf{Angular Velocity}}  &
\multicolumn{1}{p{5cm}}{\textbf{Velocity of the vehicle}} &
\multicolumn{1}{p{5cm}}{\textbf{Stable}} \\
\multicolumn{1}{c}{[\si{\radian\per\second}]}\\
\hline \hline
1        &            &    \\
2        &            &    \\
3        &            &    \\
4        &            &    \\
5        &            &    \\
6        &            &    \\
7        &            &    \\
8        &            &    \\
9        &            &    \\
10       &            &    \\ 
\hline
\end{tabular}
\end{table}

\end{document} 

相关内容